refactored all to dev

This commit is contained in:
2025-11-26 21:48:53 -08:00
parent a8066686bc
commit f8ca733307
170 changed files with 12 additions and 29 deletions
+4
View File
@@ -0,0 +1,4 @@
# Poste.io
[Documentation](https://poste.io/doc/)
+18
View File
@@ -0,0 +1,18 @@
services:
poste:
image: analogic/poste.io
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
- "4190:4190"
environment:
- HTTPS=ON
- PUBLIC_HOSTNAME=${POSTE_PUBLIC_HOSTNAME:-mail.yourdomain.com}
- TZ=${TZ:-America/Vancouver}
volumes:
- ${VOL_PATH}:/data
+8
View File
@@ -0,0 +1,8 @@
# Global
COOKBOOK=/git/docker-compose-cookbooks
VOL_PATH=./data
TZ=America/Vancouver
COMPOSE_PROJECT_NAME=poste
# Poste
POSTE_PUBLIC_HOSTNAME=yourDomain.com