Merge pull request #2713 from noud/mailcatcher

Mailcatcher
This commit is contained in:
Shao Yu-Lung (Allen) 2020-09-21 00:25:23 +08:00 committed by GitHub
commit 9780e73c76
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 18 additions and 0 deletions

View File

@ -137,6 +137,7 @@ That's it! enjoy :)
- **Mail Servers:**
- Mailu
- Mailcatcher
- Mailhog
- MailDev

View File

@ -921,6 +921,16 @@ services:
networks:
- frontend
### Mailcatcher ################################################
mailcatcher:
build: ./mailcatcher
ports:
- "1025:1025"
- "1080:1080"
networks:
- frontend
- backend
### Mailhog ################################################
mailhog:
build: ./mailhog

7
mailcatcher/Dockerfile Normal file
View File

@ -0,0 +1,7 @@
FROM schickling/mailcatcher
LABEL maintainer="Johannes Schickling <schickling.j@gmail.com>"
CMD ["mailcatcher", "--no-quit", "--foreground", "--ip=0.0.0.0"]
EXPOSE 1025 1080