20 lines
511 B
Bash
Executable File
20 lines
511 B
Bash
Executable File
#!/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" | grep -v "WELCOME_MESSAGE" | xargs)
|
|
fi
|
|
|
|
if [ ! "$ENABLE_RECORDING" == true ]; then
|
|
echo "Error: recording is disabled why can't use bbb-record"
|
|
echo "set ENABLE_RECORDING in .env if you want to use it"
|
|
exit 1
|
|
fi
|
|
|
|
docker-compose exec recordings bbb-record $@
|
|
docker-compose logs --tail=15 recordings |