dovecot 1.version
This commit is contained in:
22
dovecot/docker-compose.yml
Normal file
22
dovecot/docker-compose.yml
Normal file
@@ -0,0 +1,22 @@
|
||||
services:
|
||||
dovecot:
|
||||
image: dovecot/dovecot:latest
|
||||
container_name: dovecot
|
||||
restart: unless-stopped
|
||||
ports:
|
||||
- "143:143" # IMAP
|
||||
- "993:993" # IMAPS (IMAP über SSL)
|
||||
volumes:
|
||||
- ./config/dovecot:/etc/dovecot
|
||||
- ./data/mail:/var/mail
|
||||
- ./logs:/var/log
|
||||
# Bei Bedarf: Zugriff auf Caddy-Zertifikate
|
||||
# - /pfad/zu/caddy/certs:/etc/dovecot/ssl:ro
|
||||
environment:
|
||||
- TZ=Europe/Berlin
|
||||
networks:
|
||||
- mail_network
|
||||
|
||||
networks:
|
||||
mail_network:
|
||||
driver: bridge
|
||||
Reference in New Issue
Block a user