Added Poste

This commit is contained in:
2025-01-21 16:29:59 -08:00
parent 216719fdf4
commit 7c0a75aa75
9 changed files with 43 additions and 7 deletions
+19
View File
@@ -0,0 +1,19 @@
services:
poste:
image: analogic/poste.io
container_name: poste
restart: unless-stopped
ports:
- "25:25" # SMTP
- "110:110" # POP3
- "143:143" # IMAP
- "587:587" # Submission (SMTP client relay)
- "993:993" # IMAPS
- "995:995" # POP3S
- "8080:80" # Internal HTTP for reverse proxy
environment:
- HTTPS=ON
- PUBLIC_HOSTNAME=${POSTE_PUBLIC_HOSTNAME:-mail.yourdomain.com}
- TZ=${TZ:-America/Vancouver}
volumes:
- ./data:/data