mirror of
https://github.com/vimagick/dockerfiles.git
synced 2024-11-28 09:08:50 +02:00
14 lines
250 B
YAML
14 lines
250 B
YAML
version: "3.8"
|
|
services:
|
|
mailhog:
|
|
image: mailhog/mailhog
|
|
ports:
|
|
- "1025:1025"
|
|
- "9025:8025"
|
|
volumes:
|
|
- ./data:/data
|
|
environment:
|
|
- MH_STORAGE=maildir
|
|
- MH_MAILDIR_PATH=/data
|
|
restart: unless-stopped
|