jupiter-mail/docker-compose.yml

16 lines
436 B
YAML
Raw Permalink Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

services:
jupiter:
image: jupiter-mail/jupiter:latest
build: .
container_name: jupiter-mailserver
env_file: mailserver.env
ports:
- "25:25" # SMTP
- "143:143" # IMAP
- "465:465" # SMTP (TLS/STARTTLS)
- "993:993" # IMAP (SSL)
volumes:
- ./jupiter/mail-data/:/var/mail/
- ./jupiter/mail-logs/:/var/log/mail/
- ./jupiter/config/:/tmp/jupiter-mail/
restart: always