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

Add parsing of signed_out_uri to konnect (#388)

Allow external configuration of --signed-out-uri in konnect

Signed-off-by: Felix Bartels <felix@host-consultants.de>

Co-authored-by: Erik Damrose <damrose@univention.de>
This commit is contained in:
Felix Bartels 2020-04-30 13:59:06 +02:00 committed by GitHub
parent 08385e8f79
commit 3572fc74e7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -142,6 +142,11 @@ if [ "${insecure:-}" = "yes" ]; then
set -- "$@" "--insecure"
fi
if [ -n "${signed_out_uri:-}" ]; then
echo "Entrypoint: Setting signed-out-uri to $signed_out_uri"
set -- "$@" --signed-out-uri="$signed_out_uri"
fi
# Support additional args provided via environment.
if [ -n "${ARGS:-}" ]; then
set -- "$@" "${ARGS}"