mirror of
https://github.com/nickyeoman/docker-compose-cookbooks.git
synced 2026-09-03 18:36:22 +00:00
16 lines
310 B
YAML
16 lines
310 B
YAML
services:
|
|
mailhog:
|
|
image: ${MAILHOG_IMAGE:-mailhog/mailhog:latest}
|
|
restart: ${MAILHOG_RESTART:-unless-stopped}
|
|
ports:
|
|
- "${MAILHOG_SMTP_PORT:-1025}:1025"
|
|
- "${MAILHOG_UI_PORT:-8025}:8025"
|
|
networks:
|
|
- proxy
|
|
- internal
|
|
|
|
networks:
|
|
proxy:
|
|
external: true
|
|
internal:
|