2022-05-31 18:14:52 +00:00
|
|
|
version: '3.7'
|
|
|
|
|
2022-05-31 18:00:38 +00:00
|
|
|
services:
|
|
|
|
inbucket:
|
|
|
|
image: inbucket/inbucket:latest
|
|
|
|
container_name: inbucket
|
|
|
|
ports:
|
2022-05-31 18:23:10 +00:00
|
|
|
- "${HOST_HTTP_ADDR:-0.0.0.0}:${HOST_HTTP_PORT:-8389}:9000/tcp"
|
2022-05-31 18:00:38 +00:00
|
|
|
- "${HOST_SMTP_ADDR:-0.0.0.0}:${HOST_SMTP_PORT:-8389}:2500/tcp"
|
2022-05-31 18:31:34 +00:00
|
|
|
- "${HOST_POP3_ADDR:-0.0.0.0}:${HOST_POP3_PORT:-8389}:1100/tcp"
|
2022-05-31 18:00:38 +00:00
|
|
|
volumes:
|
|
|
|
# Not used by default, you need to configure storage parameters to store on disk.
|
|
|
|
- ./data:/data/
|
|
|
|
env_file: .env
|
|
|
|
restart: unless-stopped
|