ae9ca5d07f
Expose Maddy on port 2525 and connect Vaultwarden and Uptime Kuma to the mail network for outbound mail delivery.
23 lines
427 B
YAML
23 lines
427 B
YAML
services:
|
|
vaultwarden:
|
|
hostname: vaultwarden
|
|
image: vaultwarden/server:latest
|
|
ports:
|
|
- target: 80
|
|
published: "10380"
|
|
protocol: tcp
|
|
restart: unless-stopped
|
|
env_file: .env
|
|
volumes:
|
|
- type: bind
|
|
source: /opt/data/vaultwarden
|
|
target: /data
|
|
networks:
|
|
- default
|
|
- mail
|
|
networks:
|
|
default:
|
|
name: vaultwarden_default
|
|
mail:
|
|
external: true
|