Merge pull request #650 from wayanjimmy/feature/mailhog

Add mailhog for mail debugging
This commit is contained in:
Mahmoud Zalt 2017-03-16 13:23:28 -04:00 committed by GitHub
commit 3f1d4b70a6
2 changed files with 15 additions and 0 deletions

View File

@ -344,6 +344,14 @@ services:
links:
- php-fpm
### Mailhog Container #########################################
mailhog:
build: ./mailhog
ports:
- "1025:1025"
- "8025:8025"
### Selenium Container #########################################
selenium:

7
mailhog/Dockerfile Normal file
View File

@ -0,0 +1,7 @@
FROM mailhog/mailhog
Maintainer Mahmoud Zalt <mahmoud@zalt.me>
CMD ["Mailhog"]
EXPOSE 1025 8025