mailcatcher

This commit is contained in:
Noud de Brouwer 2020-09-19 23:39:38 +02:00
parent 9a9a9540e1
commit e483ed084f
2 changed files with 17 additions and 0 deletions

View File

@ -909,6 +909,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