Setup mailhog

This commit is contained in:
Wayan Jimmy 2017-03-04 02:07:29 +08:00
parent 4fe15ad5cf
commit 0983cc98fe
2 changed files with 13 additions and 0 deletions

View File

@ -299,6 +299,12 @@ services:
links:
- php-fpm
mailhog:
build: ./mailhog
ports:
- "1025:1025"
- "8025:8025"
### Volumes Setup ###########################################
volumes:

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