bigbluebutton-Github/bbb-lti/docker-entrypoint.sh
Marcel Waldvogel 9140613a96 Services run as starting PID
The starting scripts now `exec` the main service instead of starting
it as a subprocess. Also in line with docker-entrypoint recommendations.
2021-04-05 12:24:29 +02:00

13 lines
664 B
Bash
Executable File

#!/bin/bash -xe
export JAVA_OPTS="$JAVA_OPTS -Djava.security.egd=file:/dev/./urandom -DbigbluebuttonSalt=$BIGBLUEBUTTON_SHARED_SECRET -DbigbluebuttonURL=$BIGBLUEBUTTON_URL -DltiEndPoint=$LTI_ENDPOINT -DltiConsumers=$LTI_CONSUMERS -DltiAllRecordedByDefault=$RECORDED_BY_DEFAULT -DltiCanvasPlacements=$LTI_CANVAS_PLACEMENTS -DltiCanvasPlacementName=$LTI_CANVAS_PLACEMENT_NAME"
sed -i "s|^securerandom\.source=.*|securerandom.source=file:/dev/./urandom|g" $JAVA_HOME/lib/security/java.security
if [ -f webapps/lti.war ]; then
mkdir -p webapps/$LTI_CONTEXT_PATH
unzip -q webapps/lti.war -d webapps/$LTI_CONTEXT_PATH
rm webapps/lti.war
fi
exec catalina.sh run