mirror of
https://github.com/bigbluebutton/docker.git
synced 2025-08-10 21:23:37 +02:00
v3.0.0-beta.5: basic working functionality
quite some features (recording, SIP, transcription, etc.) are not working yet, but a milestone where it should finally take a commit
This commit is contained in:
@ -1,5 +1,5 @@
|
||||
function load_env {
|
||||
export $(cat .env | sed 's/#.*//g' | grep -v "WELCOME_FOOTER" | grep -v "WELCOME_MESSAGE" | grep -v "CLIENT_TITLE" | xargs)
|
||||
export $(cat .env | sed 's/#.*//g' | grep -v "WELCOME_FOOTER" | grep -v "WELCOME_MESSAGE" | xargs)
|
||||
}
|
||||
|
||||
function ensure_submodules {
|
||||
@ -16,3 +16,14 @@ function ensure_submodules {
|
||||
|
||||
}
|
||||
|
||||
function ensure_bbbhtml5yml {
|
||||
if [ ! -f conf/bbb-html5.yml ]; then
|
||||
|
||||
cat << EOF > conf/bbb-html5.yml
|
||||
# this file equals the /etc/bigbluebutton/bbb-html5.yml file referenced in the docs
|
||||
public:
|
||||
app:
|
||||
appName: BigBlueButton HTML5 Client (docker)
|
||||
EOF
|
||||
fi
|
||||
}
|
Reference in New Issue
Block a user