mirror of
https://github.com/Dokploy/templates.git
synced 2026-07-08 15:35:24 +02:00
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.
20 lines
457 B
YAML
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: |