Ajouter README avec instructions d'installation

This commit is contained in:
ayo 2026-06-19 09:50:22 +02:00
commit 4f7b9322ad
5 changed files with 76 additions and 7 deletions

View file

@ -5,12 +5,14 @@ services:
build:
context: .
dockerfile: dovecot/Dockerfile
image: mailstack_dovecot:latest
container_name: mailstack-dovecot
ports:
- "1143:143" # IMAP
- "1993:993" # IMAPS
- "1143:143"
- "1993:993"
volumes:
- vmail:/var/mail/vhosts
- ./hosts:/etc/hosts:ro
networks:
- mailstack
@ -18,13 +20,15 @@ services:
build:
context: .
dockerfile: postfix/Dockerfile
image: mailstack_postfix:latest
container_name: mailstack-postfix
ports:
- "1025:25" # SMTP
- "1587:587" # SMTP + AUTH
- "1465:465" # SMTPS
- "1025:25"
- "1587:587"
- "1465:465"
volumes:
- vmail:/var/mail/vhosts
- ./hosts:/etc/hosts:ro
networks:
- mailstack
depends_on: