1
0
mirror of https://github.com/zokradonh/kopano-docker synced 2025-06-06 23:46:24 +00:00
Felix Bartels e3d7e01583
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
2019-02-19 12:57:57 +01:00

15 lines
224 B
Bash
Executable File

#!/bin/sh
set -e
if [ -n "$oidc_issuer_identifier" ]; then
set -- "$@" --iss="$oidc_issuer_identifier"
fi
if [ "$INSECURE" = "yes" ]; then
set -- "$@" --insecure
fi
exec /usr/local/bin/docker-entrypoint.sh serve "$@"