Enable Vaultwarden SMTP on mini-pc
Deploy mini-pc / deploy (push) Failing after 45s
NixOS switch mini-pc / switch (push) Successful in 12s

Expose Maddy on port 2525 and connect
Vaultwarden and Uptime Kuma to the mail
network for outbound mail delivery.
This commit is contained in:
Dmitry
2026-05-30 20:28:08 +03:00
parent 2b1d98292b
commit ae9ca5d07f
5 changed files with 20 additions and 2 deletions
+2
View File
@@ -4,6 +4,8 @@ services:
container_name: maddy
hostname: maddy
restart: unless-stopped
ports:
- "2525:2525"
env_file:
- .env
volumes:
+7 -1
View File
@@ -10,4 +10,10 @@ services:
TZ: Europe/Moscow
volumes:
- /opt/data/uptime-kuma:/app/data
networks: {}
networks:
- default
- mail
networks:
default:
mail:
external: true
+5
View File
@@ -1 +1,6 @@
ADMIN_TOKEN=changeme
SMTP_HOST=maddy
SMTP_PORT=2525
SMTP_SECURITY=off
SMTP_FROM=vaultwarden@ada-dev.ru
SMTP_FROM_NAME=Vaultwarden
+5 -1
View File
@@ -2,7 +2,6 @@ services:
vaultwarden:
hostname: vaultwarden
image: vaultwarden/server:latest
network_mode: bridge
ports:
- target: 80
published: "10380"
@@ -13,6 +12,11 @@ services:
- type: bind
source: /opt/data/vaultwarden
target: /data
networks:
- default
- mail
networks:
default:
name: vaultwarden_default
mail:
external: true