mirror of
https://github.com/bigbluebutton/docker.git
synced 2024-12-02 04:53:09 +01:00
18 lines
429 B
Bash
18 lines
429 B
Bash
#!/bin/bash
|
|
|
|
# print all logs to stdout
|
|
python3 -u /log-collector.py &
|
|
|
|
cd /usr/local/bigbluebutton/core/scripts
|
|
|
|
while true; do
|
|
echo "execute workers..."
|
|
bundle exec ruby rap-archive-worker.rb
|
|
bundle exec ruby rap-sanity-worker.rb
|
|
bundle exec ruby rap-process-worker.rb
|
|
bundle exec ruby rap-publish-worker.rb
|
|
|
|
bundle exec ruby rap-caption-inbox.rb
|
|
bundle exec ruby rap-events-worker.rb
|
|
|
|
sleep 30s |