Initial commit

This commit is contained in:
2025-03-22 14:29:48 +01:00
commit da7781035d
87 changed files with 3160 additions and 0 deletions

View File

@@ -0,0 +1,23 @@
services:
roundcube:
image: roundcube/roundcubemail
container_name: roundcube
networks:
- default
- proxy
environment:
- ROUNDCUBEMAIL_DEFAULT_HOST=ssl://mail.vhaudiquet.fr
- ROUNDCUBEMAIL_DEFAULT_PORT=993
- ROUNDCUBEMAIL_SMTP_SERVER=ssl://mail.vhaudiquet.fr
- ROUNDCUBEMAIL_SMTP_PORT=465
ports:
- "8000"
labels:
- "traefik.enable=true"
- "traefik.http.routers.roundcube.rule=Host(`webmail.local`)"
- "traefik.http.routers.roundcube.entrypoints=http"
networks:
proxy:
name: proxy
external: true

View File

@@ -0,0 +1,32 @@
services:
stalwart:
image: stalwartlabs/mail-server:latest
container_name: stalwart
networks:
- default
- proxy
volumes:
- stalwart_data:/opt/stalwart-mail
ports:
- "25:25" # SMTP port
- "465:465" # SMTPS port
- "993:993" # IMAPS port
- "587:587" # SMTP Submission STARTTLS
- "8080" # HTTP port
labels:
- "traefik.enable=true"
- "traefik.http.routers.stalwart.rule=Host(`mail.vhaudiquet.fr`)"
- "traefik.http.services.stalwart.loadbalancer.server.port=8080"
volumes:
stalwart_data:
driver: local
driver_opts:
type: 'none'
o: 'bind'
device: '/app/stalwart/data'
networks:
proxy:
name: proxy
external: true