mirror of
https://github.com/Dokploy/templates
synced 2025-06-26 18:16:07 +00:00
25 lines
511 B
YAML
25 lines
511 B
YAML
services:
|
|
mailpit:
|
|
image: axllent/mailpit:v1.22.3
|
|
restart: unless-stopped
|
|
ports:
|
|
- '1025:1025'
|
|
volumes:
|
|
- 'mailpit-data:/data'
|
|
environment:
|
|
- MP_SMTP_AUTH_ALLOW_INSECURE=true
|
|
- MP_MAX_MESSAGES=5000
|
|
- MP_DATABASE=/data/mailpit.db
|
|
- MP_UI_AUTH=${MP_UI_AUTH}
|
|
- MP_SMTP_AUTH=${MP_SMTP_AUTH}
|
|
healthcheck:
|
|
test:
|
|
- CMD
|
|
- /mailpit
|
|
- readyz
|
|
interval: 5s
|
|
timeout: 20s
|
|
retries: 10
|
|
|
|
volumes:
|
|
mailpit-data: |