mirror of
https://github.com/vimagick/dockerfiles.git
synced 2024-12-23 01:39:27 +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
|