1
0
mirror of https://github.com/zokradonh/kopano-docker synced 2025-06-07 16:06:14 +00:00

add some more documentation about used ports (#161)

also add more ports to docker-compose.yml

Signed-off-by: Felix Bartels <felix@host-consultants.de>
This commit is contained in:
Felix Bartels 2019-05-22 12:03:56 +02:00 committed by GitHub
parent 394a6de790
commit e4b391be4f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 10 additions and 1 deletions

View File

@ -41,3 +41,9 @@ Example:
Depending on the overall performance of the system and the amount of user the first execution of this command will take a moment before it produces any output. This is since this command kicks off the mailbox creation for the users. Depending on the overall performance of the system and the amount of user the first execution of this command will take a moment before it produces any output. This is since this command kicks off the mailbox creation for the users.
See https://documentation.kopano.io/kopanocore_administrator_manual/configure_kc_components.html#testing-ldap-configuration for more information. See https://documentation.kopano.io/kopanocore_administrator_manual/configure_kc_components.html#testing-ldap-configuration for more information.
## Ports & Proxying
- kopano-server is configured to listen on the ports 236 (plain) and 237 (https)
- kopano-ical is configured to listen on the port 8080, but the web container is also configured to proxy access to http(s)://FQDN/caldav to kopano-ical
- kopano-gateway is configured to listen on IMAP traffic on port 143. Pop3 is deactivated by default but whould be listening on port 110. Pop3s and IMAPs are currently not configured. (see https://github.com/zokradonh/kopano-docker/issues/16 for more details).

View File

@ -368,6 +368,7 @@ services:
depends_on: depends_on:
- kopano_server - kopano_server
ports: ports:
- "${POP3PORT:-110}:110"
- "${IMAPPORT:-143}:143" - "${IMAPPORT:-143}:143"
volumes: volumes:
- kopanossl/:/kopano/ssl - kopanossl/:/kopano/ssl
@ -386,6 +387,8 @@ services:
image: ${docker_repo:-zokradonh}/kopano_core:${CORE_VERSION:-latest} image: ${docker_repo:-zokradonh}/kopano_core:${CORE_VERSION:-latest}
depends_on: depends_on:
- kopano_server - kopano_server
ports:
- "${ICALPORT:-8080}:8080"
volumes: volumes:
- kopanossl/:/kopano/ssl - kopanossl/:/kopano/ssl
- kopanosocket/:/run/kopano - kopanosocket/:/run/kopano