20 lines
499 B
YAML
20 lines
499 B
YAML
services:
|
|
platform-mail:
|
|
image: axllent/mailpit:latest
|
|
container_name: atlilith-platform-mail
|
|
ports:
|
|
- "1026:1025"
|
|
- "8026:8025"
|
|
environment:
|
|
MP_MAX_MESSAGES: 5000
|
|
MP_DATABASE: /data/mailpit.db
|
|
volumes:
|
|
- atlilith-platform-mail-data:/data
|
|
healthcheck:
|
|
test: ["CMD-SHELL", "wget -qO- http://localhost:8025/api/v1/info > /dev/null || exit 1"]
|
|
interval: 10s
|
|
timeout: 5s
|
|
retries: 5
|
|
|
|
volumes:
|
|
atlilith-platform-mail-data:
|