Fixed a few network+volume issues, so the service actually starts up. Also added a handful of permissions env variables to start with
9 lines
141 B
Bash
9 lines
141 B
Bash
#!/bin/sh
|
|
|
|
echo "Running Entrypoint"
|
|
|
|
set -e
|
|
export "POSTGRES_PASSWORD=`cat $POSTGRES_PASSWORD_FILE`"
|
|
cd /opt/app/
|
|
exec ./docker-start.sh $@
|