mirror of
https://github.com/luzifer-docker/jitsi.git
synced 2024-11-14 09:22:43 +00:00
13 lines
340 B
Text
13 lines
340 B
Text
|
#!/bin/bash
|
||
|
set -euxo pipefail
|
||
|
|
||
|
[ -f /etc/jitsi-env.conf ] && source /etc/jitsi-env.conf
|
||
|
|
||
|
exec /usr/local/bin/gosu jicofo /usr/share/jicofo/jicofo.sh \
|
||
|
--host=$JICOFO_HOST \
|
||
|
--domain=$JICOFO_HOSTNAME \
|
||
|
--secret=$JICOFO_SECRET \
|
||
|
--user_name=$JICOFO_AUTH_USER \
|
||
|
--user_domain=$JICOFO_AUTH_DOMAIN \
|
||
|
--user_password=$JICOFO_AUTH_PASSWORD
|