Files
templates/blueprints/stalwart/docker-compose.yml
Ali AlNaghmousgh ae4cbe2fa1 feat: add Stalwart Mail Server (#146)
This commit introduces a new blueprint for the Stalwart Mail Server, including configuration templates, Docker Compose setup, and metadata updates. The blueprint enables self-hosted email solutions with support for JMAP, IMAP4, POP3, and SMTP protocols.
2025-05-24 17:53:11 -06:00

20 lines
457 B
YAML

services:
stalwart-mail:
image: stalwartlabs/mail-server:latest-alpine
ports:
- "443" # HTTPS
- "8080" # HTTP API
- "25" # SMTP
- "587" # Submission
- "465" # SMTPS
- "143" # IMAP
- "993" # IMAPS
- "4190" # ManageSieve
- "110" # POP3
- "995" # POP3S
volumes:
- stalwart_data:/opt/stalwart-mail
restart: unless-stopped
volumes:
stalwart_data: