fix second batch of _dev stacks: mariadb, mealie, nocodb, openarchiver, penpot, peertube, poste, posthog, suitecrm, zammad

This commit is contained in:
openhands
2026-07-16 04:57:38 +00:00
parent 6eedbf4a0d
commit 366709ddd8
18 changed files with 475 additions and 811 deletions
+21 -13
View File
@@ -1,18 +1,26 @@
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"
image: ${POSTE_IMAGE:-analogic/poste.io:latest}
restart: ${POSTE_RESTART:-unless-stopped}
volumes:
- ${VOL_PATH:-/data}/poste:/data
environment:
- HTTPS=ON
- PUBLIC_HOSTNAME=${POSTE_PUBLIC_HOSTNAME:-mail.yourdomain.com}
- PUBLIC_HOSTNAME=${POSTE_HOSTNAME:-mail.yourdomain.com}
- TZ=${TZ:-America/Vancouver}
volumes:
- ${VOL_PATH}:/data
ports:
- "${POSTE_SMTP_PORT:-25}:25"
- "${POSTE_POP3_PORT:-110}:110"
- "${POSTE_IMAP_PORT:-143}:143"
- "${POSTE_SUBMISSION_PORT:-587}:587"
- "${POSTE_IMAPS_PORT:-993}:993"
- "${POSTE_POP3S_PORT:-995}:995"
- "${POSTE_SIEVE_PORT:-4190}:4190"
networks:
- proxy
- internal
networks:
proxy:
external: true
internal:
+13 -6
View File
@@ -1,8 +1,15 @@
# Global
COOKBOOK=/git/docker-compose-cookbooks
VOL_PATH=./data
TZ=America/Vancouver
COMPOSE_PROJECT_NAME=poste
# Compose
VOL_PATH=/data
POSTE_IMAGE=analogic/poste.io:latest
POSTE_RESTART=unless-stopped
POSTE_SMTP_PORT=25
POSTE_POP3_PORT=110
POSTE_IMAP_PORT=143
POSTE_SUBMISSION_PORT=587
POSTE_IMAPS_PORT=993
POSTE_POP3S_PORT=995
POSTE_SIEVE_PORT=4190
# Poste
POSTE_PUBLIC_HOSTNAME=yourDomain.com
POSTE_HOSTNAME=mail.yourdomain.com
TZ=America/Vancouver