mirror of
https://github.com/nickyeoman/docker-compose-cookbooks.git
synced 2026-09-04 19:06:21 +00:00
14 lines
270 B
Markdown
14 lines
270 B
Markdown
# Mailhog
|
|
|
|
TODO:
|
|
|
|
```
|
|
mailhog:
|
|
image: 'mailhog/mailhog:latest' # https://hub.docker.com/r/mailhog/mailhog
|
|
ports:
|
|
- "${SMTP_PORT}:1025"
|
|
- "8002:8025"
|
|
volumes:
|
|
- "/etc/timezone:/etc/timezone:ro"
|
|
- "/etc/localtime:/etc/localtime:ro"
|
|
``` |