Files
email_server/docker-compose.yml
T
2026-06-23 00:46:57 +07:00

21 lines
821 B
YAML
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
version: '3.8'
services:
stalwart:
image: stalwartlabs/stalwart:latest
container_name: stalwart-mail
restart: unless-stopped
ports:
- "25:25" # SMTP (входящая почта)
- "587:587" # SMTP с STARTTLS (отправка с аутентификацией)
- "465:465" # SMTP SSL
- "143:143" # IMAP
- "993:993" # IMAPS
- "8300:8080" # Админ-панель (HTTP, bootstrap режим)
- "8310:443" # Админ-панель (HTTP, bootstrap режим)
volumes:
- ./stalwart-data:/opt/stalwart/data # Данные почты и БД
- ./stalwart-config:/opt/stalwart/etc # Конфигурационные файлы (.toml)[citation:4][citation:7]
environment:
- STALWART_HOSTNAME=mail.crabs-games.art