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

Kwmbridge (#405)

* add kwmbridge
* add new config options for kwmserver and kwmbridge
This commit is contained in:
Felix Bartels
2020-06-23 22:33:23 +02:00
committed by GitHub
parent fabe8f06c4
commit cb3eecf5bb
8 changed files with 139 additions and 4 deletions
+2 -2
View File
@@ -1,4 +1,4 @@
ARG CODE_VERSION=1.1.1
ARG CODE_VERSION=1.2.0
FROM kopano/kwmserverd:${CODE_VERSION}
ARG CODE_VERSION
@@ -22,4 +22,4 @@ USER nobody
COPY wrapper.sh /usr/local/bin
ARG VCS_REF
LABEL org.label-schema.vcs-ref=$VCS_REF
LABEL org.label-schema.vcs-ref=$VCS_REF
+8 -1
View File
@@ -7,7 +7,6 @@ if [ -n "${log_level:-}" ]; then
set -- "$@" --log-level="$log_level"
fi
# shellcheck disable=SC2154
if [ -n "${oidc_issuer_identifier:-}" ]; then
set -- "$@" --iss="$oidc_issuer_identifier"
fi
@@ -16,6 +15,14 @@ if [ "${enable_guest_api:-}" = "yes" ]; then
set -- "$@" --enable-guest-api
fi
if [ "${enable_rtm_api:-}" = "yes" ]; then
set -- "$@" --enable-rtm-api
fi
if [ "${enable_mcu_api:-}" = "yes" ]; then
set -- "$@" --enable-mcu-api
fi
if [ "$INSECURE" = "yes" ]; then
set -- "$@" --insecure
fi