mirror of
https://github.com/zokradonh/kopano-docker.git
synced 2026-08-22 22:03:03 +00:00
Further tweaks for univention app (#264)
* add option to change base path * fix env name * add kweb configuration for using konnect in a subpath * make webapp display configurable * more explicit startup messages * add ability to use an external oidc provider * install the grapi ldap backend in the image when building with a recent enough kopano version * add the ability to run test in the konnect container * the startup script gets more and more complicated, there should be a way to test it * test some values and add test helper * do not simply cat the registration, but call with yq * update kweb and konnect
This commit is contained in:
@@ -34,8 +34,14 @@ for setting in $(compgen -A variable KCCONF_MEET); do
|
||||
esac
|
||||
done
|
||||
|
||||
# enable Kopano WebApp in the app switcher
|
||||
jq '.apps += {"enabled": ["kopano-webapp"]}' $CONFIG_JSON | sponge $CONFIG_JSON
|
||||
# enable Kopano Konnect in the app grid
|
||||
jq '.apps += {"enabled": ["kopano-konnect"]}' $CONFIG_JSON | sponge $CONFIG_JSON
|
||||
|
||||
# enable Kopano WebApp in the app grid (enabled by default)
|
||||
# TODO how to only update the array?
|
||||
if [ "${GRID_WEBAPP:-yes}" = "yes" ]; then
|
||||
jq '.apps += {"enabled": ["kopano-webapp", "kopano-konnect"]}' $CONFIG_JSON | sponge $CONFIG_JSON
|
||||
fi
|
||||
|
||||
#cat $CONFIG_JSON
|
||||
|
||||
|
||||
Reference in New Issue
Block a user