mirror of
https://github.com/luzifer-docker/jitsi.git
synced 2024-11-13 00:42:42 +00:00
12 lines
340 B
Bash
Executable file
12 lines
340 B
Bash
Executable file
#!/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
|