9140613a96
The starting scripts now `exec` the main service instead of starting it as a subprocess. Also in line with docker-entrypoint recommendations.
15 lines
394 B
Bash
Executable File
15 lines
394 B
Bash
Executable File
#!/usr/bin/env bash
|
|
IS_BBB_WEB_RUNNING=`netstat -an | grep LISTEN | grep 8090 > /dev/null && echo 1 || echo 0`
|
|
|
|
if [ "$IS_BBB_WEB_RUNNING" = "1" ]; then
|
|
echo "bbb-web is running, exiting"
|
|
exit 1
|
|
fi
|
|
|
|
if [ "`whoami`" != "bigbluebutton" ]; then
|
|
echo "ERROR: bbb-web must run as bigbluebutton user ( because of the uploaded files permissions )"
|
|
exit 1
|
|
fi
|
|
|
|
exec grails prod run-app --port 8090
|