37 lines
820 B
Django/Jinja
37 lines
820 B
Django/Jinja
networks:
|
|
mail:
|
|
external: false
|
|
|
|
services:
|
|
dovecot:
|
|
image: docker.io/dovecot/dovecot:latest
|
|
container_name: dovecot
|
|
restart: unless-stopped
|
|
networks:
|
|
- mail
|
|
volumes:
|
|
- mail_data:/srv/vmail
|
|
ports:
|
|
- "31143:31143"
|
|
- "31993:31993"
|
|
- "31110:31110"
|
|
- "31995:31995"
|
|
- "1465:1465"
|
|
- "31587:31587"
|
|
- "31024:31024"
|
|
- "34190:34190"
|
|
- "8080:8080"
|
|
- "127.0.01:9110:9110"
|
|
|
|
postfix:
|
|
image: git.secretbee.buzz/bee/postfix:latest
|
|
container_name: postfix
|
|
restart: unless-stopped
|
|
networks:
|
|
- mail
|
|
volumes:
|
|
- /etc/letsencrypt/live/mail.secretbee.buzz/fullchain.pem:/etc/postfix/fullchain.pem
|
|
- /etc/letsencrypt/live/mail.secretbee.buzz/privkey.pem:/etc/postfix/privkey.pem
|
|
|
|
volumes:
|
|
mail-data: |