14 lines
281 B
Bash
14 lines
281 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
set -eo pipefail
|
||
|
|
||
|
if [ ! -f /container-lifecycle/first_run ]; then
|
||
|
waitforit -debug -host $SG_DATABASE_HOST -port 5432
|
||
|
super-graph db:migrate up
|
||
|
super-graph db:seed
|
||
|
mkdir /container-lifecycle
|
||
|
touch /container-lifecycle/first_run
|
||
|
fi
|
||
|
|
||
|
super-graph serv
|