Skip to content

Instantly share code, notes, and snippets.

@raccoonyy
Created March 6, 2018 06:10
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save raccoonyy/85ccdf43ae6ee2d29fdf908dbdbe8a1a to your computer and use it in GitHub Desktop.
Save raccoonyy/85ccdf43ae6ee2d29fdf908dbdbe8a1a to your computer and use it in GitHub Desktop.
docker compose settings for mailhog
version: '3.3'
services:
mailhog:
image: mailhog/mailhog
ports:
- "8025:8025"
healthcheck:
test: ["CMD", "echo | telnet 127.0.0.1 8025"]
interval: 1m30s
timeout: 5s
retries: 3
logging:
driver: "none"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment