mirror of
https://github.com/docker-mailserver/docker-mailserver.git
synced 2024-01-19 02:48:50 +00:00
e1178459eb
* Comments added * Update docker-compose.yml Co-authored-by: Georg Lauterbach <44545919+aendeavor@users.noreply.github.com>
33 lines
1 KiB
YAML
33 lines
1 KiB
YAML
version: '3.8'
|
|
|
|
services:
|
|
mailserver:
|
|
image: docker.io/mailserver/docker-mailserver:latest
|
|
hostname: ${HOSTNAME}
|
|
domainname: ${DOMAINNAME}
|
|
container_name: ${CONTAINER_NAME}
|
|
env_file: mailserver.env
|
|
# To avoid conflicts with yaml base-60 float, DO NOT remove the quotation marks.
|
|
# More information about the mailserver ports:
|
|
# https://docker-mailserver.github.io/docker-mailserver/edge/config/security/understanding-the-ports/
|
|
ports:
|
|
- "25:25" # SMTP (explicit TLS => STARTTLS)
|
|
- "143:143" # IMAP4 (explicit TLS => STARTTLS)
|
|
- "465:465" # ESMTP (implicit TLS)
|
|
- "587:587" # ESMTP (explicit TLS => STARTTLS)
|
|
- "993:993" # IMAP4 (implicit TLS)
|
|
volumes:
|
|
- maildata:/var/mail
|
|
- mailstate:/var/mail-state
|
|
- maillogs:/var/log/mail
|
|
- /etc/localtime:/etc/localtime:ro
|
|
- ./config/:/tmp/docker-mailserver/${SELINUX_LABEL}
|
|
restart: always
|
|
stop_grace_period: 1m
|
|
cap_add: [ "NET_ADMIN", "SYS_PTRACE" ]
|
|
|
|
volumes:
|
|
maildata:
|
|
mailstate:
|
|
maillogs:
|