mirror of
https://github.com/bigbluebutton/docker.git
synced 2025-08-15 15:22:33 +02:00
scripts: 'compose' and some minor fixes
This commit is contained in:
22
scripts/compose
Executable file
22
scripts/compose
Executable file
@ -0,0 +1,22 @@
|
||||
#!/bin/bash
|
||||
set -e
|
||||
|
||||
cd $(dirname $0)/..
|
||||
|
||||
# load .env
|
||||
if [ -f .env ]
|
||||
then
|
||||
# exclude WELCOME_FOOTER because it may contain invalid characters
|
||||
export $(cat .env | sed 's/#.*//g' | grep -v "WELCOME_FOOTER" | xargs)
|
||||
fi
|
||||
|
||||
# concatenate docker-compose file
|
||||
COMPOSE_FILES="-f docker-compose.yml"
|
||||
if [ "$ENABLE_HTTPS_PROXY" == true ]; then
|
||||
COMPOSE_FILES="$COMPOSE_FILES -f docker-compose.https.yml"
|
||||
fi
|
||||
if [ "$ENABLE_GREENLIGHT" == true ]; then
|
||||
COMPOSE_FILES="$COMPOSE_FILES -f docker-compose.greenlight.yml"
|
||||
fi
|
||||
|
||||
docker-compose $COMPOSE_FILES $@
|
Reference in New Issue
Block a user