9140613a96
The starting scripts now `exec` the main service instead of starting it as a subprocess. Also in line with docker-entrypoint recommendations.
13 lines
664 B
Bash
Executable File
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
|