Files
templates/blueprints/poste.io/docker-compose.yml
Harikrishnan Dhanasekaran 0d8c2cb7b8 Feat : Add Poste.io Template #467 (#476)
* feat: Add Poste.io mail server template

* updated the meta.json for the build issue
2025-10-25 01:52:35 -06:00

26 lines
461 B
YAML

version: "3.8"
services:
mailserver:
image: analogic/poste.io
restart: unless-stopped
hostname: mail.${DOMAIN}
ports:
- "25:25"
- "110:110"
- "143:143"
- "465:465"
- "587:587"
- "993:993"
- "995:995"
- "4190:4190"
environment:
- TZ=${TZ}
- HTTPS=OFF
- HTTP_PORT=8080
volumes:
- /etc/localtime:/etc/localtime:ro
- poste-data:/data
volumes:
poste-data: {}