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

tweaks for Kopano Meet 2.0 (#328)

* tweaks for Kopano Meet 2.0
* remove surplus package
This commit is contained in:
Felix Bartels 2020-01-27 16:08:51 +01:00 committed by GitHub
parent 1ac48eec52
commit 64b73be662
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 3 additions and 2 deletions

View File

@ -432,6 +432,8 @@ services:
environment:
- KCCONF_MEET_disableFullGAB=false
- KCCONF_MEET_guests_enabled=true
- KCCONF_MEET_oidc_useImplicitFlow=true # workaround for guest login with meet https://stash.kopano.io/projects/KWM/repos/meet/pull-requests/102/overview
- KCCONF_MEET_minimumVersion=20200121 # can be used force updates of Meet
- SERVICE_TO_START=meet
env_file:
- kopano_meet.env

View File

@ -74,7 +74,6 @@ services:
- /var/lib/dbus/machine-id:/var/lib/dbus/machine-id
- kopanosocket/:/run/kopano
environment:
- ADDITIONAL_KOPANO_PACKAGES=python3-grapi.backend.ldap
- GRAPI_BACKEND=ldap
- LDAP_BASEDN=${LDAP_SEARCH_BASE}
- LDAP_BINDDN=${LDAP_BIND_DN}

View File

@ -33,7 +33,7 @@ for setting in $(compgen -A variable KCCONF_MEET); do
setting2=${setting#KCCONF_MEET_}
# dots in setting2 need to be escaped to not be handled as separate entities in the json file
case ${!setting} in
true|TRUE|false|FALSE)
true|TRUE|false|FALSE|[0-9][0-9][0-9][0-9][0-9][0-9][0-9][0-9])
jq ".\"${setting2//_/\".\"}\" = ${!setting}" $CONFIG_JSON | sponge $CONFIG_JSON
;;
*)