mirror of
https://github.com/luzifer-docker/jitsi.git
synced 2024-11-14 09:22:43 +00:00
11 lines
245 B
Text
11 lines
245 B
Text
|
#!/bin/bash
|
||
|
set -euxo pipefail
|
||
|
|
||
|
[ -f /etc/jitsi-env.conf ] && source /etc/jitsi-env.conf
|
||
|
|
||
|
exec /usr/local/bin/gosu jvb /usr/share/jitsi-videobridge/jvb.sh \
|
||
|
--host=$JVB_HOST \
|
||
|
--domain=$JVB_HOSTNAME \
|
||
|
--port=$JVB_PORT \
|
||
|
--secret=$JVB_SECRET
|