9140613a96
The starting scripts now `exec` the main service instead of starting it as a subprocess. Also in line with docker-entrypoint recommendations.
3 lines
267 B
Bash
Executable File
3 lines
267 B
Bash
Executable File
#!/bin/bash
|
|
exec java -Dgrails.env=prod -Dserver.address=127.0.0.1 -Dserver.port=8090 -Xms384m -Xmx384m -XX:+HeapDumpOnOutOfMemoryError -XX:HeapDumpPath=/var/bigbluebutton/diagnostics -cp WEB-INF/lib/*:/:WEB-INF/classes/:. org.springframework.boot.loader.WarLauncher
|