mirror of
https://github.com/bigbluebutton/docker.git
synced 2025-04-06 15:18:19 +02:00
17 lines
350 B
Bash
Executable File
17 lines
350 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
|
|
cd $(dirname $0)/..
|
|
|
|
# load .env
|
|
. scripts/functions.sh
|
|
load_env
|
|
|
|
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 |