mirror of
https://github.com/docker-mailserver/docker-mailserver.git
synced 2024-01-19 02:48:50 +00:00
Comments added (#1909)
* Comments added * Update docker-compose.yml Co-authored-by: Georg Lauterbach <44545919+aendeavor@users.noreply.github.com>
This commit is contained in:
parent
b2842f3bbc
commit
e1178459eb
|
@ -8,11 +8,14 @@ services:
|
||||||
container_name: ${CONTAINER_NAME}
|
container_name: ${CONTAINER_NAME}
|
||||||
env_file: mailserver.env
|
env_file: mailserver.env
|
||||||
# To avoid conflicts with yaml base-60 float, DO NOT remove the quotation marks.
|
# 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:
|
ports:
|
||||||
- "25:25"
|
- "25:25" # SMTP (explicit TLS => STARTTLS)
|
||||||
- "143:143"
|
- "143:143" # IMAP4 (explicit TLS => STARTTLS)
|
||||||
- "587:587"
|
- "465:465" # ESMTP (implicit TLS)
|
||||||
- "993:993"
|
- "587:587" # ESMTP (explicit TLS => STARTTLS)
|
||||||
|
- "993:993" # IMAP4 (implicit TLS)
|
||||||
volumes:
|
volumes:
|
||||||
- maildata:/var/mail
|
- maildata:/var/mail
|
||||||
- mailstate:/var/mail-state
|
- mailstate:/var/mail-state
|
||||||
|
|
Loading…
Reference in a new issue