9140613a96
The starting scripts now `exec` the main service instead of starting it as a subprocess. Also in line with docker-entrypoint recommendations.
7 lines
120 B
Bash
Executable File
7 lines
120 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
sbt clean stage
|
|
sudo service bbb-apps-akka stop
|
|
cd target/universal/stage
|
|
exec ./bin/bbb-apps-akka
|