docker-stacks/inbucket/docker-compose.yml
Alexey Skobkin ddd06555e4
All checks were successful
continuous-integration/drone/push Build is passing
inbucket (#39)
Inbucket test mail server.

Closes #38.

Reviewed-on: #39
2022-05-31 21:00:38 +03:00

14 lines
478 B
YAML

services:
inbucket:
image: inbucket/inbucket:latest
container_name: inbucket
ports:
- "${HOST_HTTP_PORT:-0.0.0.0}:${HOST_HTTP_PORT:-8389}:9000/tcp"
- "${HOST_SMTP_ADDR:-0.0.0.0}:${HOST_SMTP_PORT:-8389}:2500/tcp"
- "${HOST_HTTP_ADDR:-0.0.0.0}:${HOST_POP3_PORT:-8389}:1100/tcp"
volumes:
# Not used by default, you need to configure storage parameters to store on disk.
- ./data:/data/
env_file: .env
restart: unless-stopped