1
0
mirror of https://github.com/zokradonh/kopano-docker.git synced 2026-08-11 16:32:59 +00:00

Add Kopano Meet and depending instrastructure to meet

Makefile adjustments
reorder Makefile
adds image for kwmserver
adds image for meet
add Meet to compose
clean up proxy configuration
move kcconf.py into the base image
This commit is contained in:
Felix Bartels
2019-02-19 12:57:57 +01:00
committed by GitHub
parent 0fc1c3bef5
commit e3d7e01583
17 changed files with 260 additions and 52 deletions
+24 -4
View File
@@ -258,6 +258,8 @@ services:
kopano_kapi:
image: ${docker_repo:?err}/kopano_core:${CORE_VERSION}
container_name: kopano_kapi
depends_on:
- kopano_grapi
volumes:
- kopanodata/:/kopano/data
- kopanossl/:/kopano/ssl
@@ -358,7 +360,7 @@ services:
- kopano-net
kopano_konnect:
image: ${docker_repo:?err}/kopano_konnect
image: ${docker_repo:?err}/kopano_konnect:${KONNECT_VERSION}
container_name: kopano_konnect
command: wrapper.sh
volumes:
@@ -378,14 +380,32 @@ services:
- web-net
kopano_kwmserver:
image: kopano/kwmserverd:0.13.1
image: ${docker_repo:?err}/kopano_kwmserver:${KWM_VERSION}
container_name: kopano_kwmserver
command: wrapper.sh
environment:
- KWMSERVERD_ADMIN_TOKENS_KEY_FILE=/kopano/ssl/kwm-admin-tokens.key
- INSECURE=${INSECURE}
- oidc_issuer_identifier=https://${FQDN}
volumes:
- kopanossl/:/kopano/ssl
extra_hosts:
- ${EXTRAHOSTS}
networks:
- web-net
- web-net
kopano_meet:
image: ${docker_repo:?err}/kopano_meet:${MEET_VERSION}
container_name: kopano_meet
environment:
- SERVICE_TO_START=meet
- KCCONF_KWEBD_TLS=no
depends_on:
- kopano_kapi
- kopano_konnect
- kopano_kwmserver
- web
networks:
- web-net
volumes:
web: