ae9ca5d07f
Expose Maddy on port 2525 and connect Vaultwarden and Uptime Kuma to the mail network for outbound mail delivery.
21 lines
343 B
YAML
21 lines
343 B
YAML
services:
|
|
maddy:
|
|
image: foxcpp/maddy:0.8
|
|
container_name: maddy
|
|
hostname: maddy
|
|
restart: unless-stopped
|
|
ports:
|
|
- "2525:2525"
|
|
env_file:
|
|
- .env
|
|
volumes:
|
|
- /opt/data/maddy:/data
|
|
- ./maddy.conf:/data/maddy.conf:ro
|
|
networks:
|
|
- mail
|
|
|
|
networks:
|
|
mail:
|
|
name: mail
|
|
driver: bridge
|