Add support for host mounts (fixes #94)

master
Alexander Overvoorde 2020-02-19 21:04:24 +01:00
parent 5300472417
commit 5a1b2a6b06
1 changed files with 6 additions and 0 deletions

6
run.sh
View File

@ -24,6 +24,12 @@ if [ "$#" -ne 1 ]; then
fi
if [ "$1" = "import" ]; then
# Ensure that database directory is in right state
chown postgres:postgres -R /var/lib/postgresql
if [ ! -f /var/lib/postgresql/12/main/PG_VERSION ]; then
sudo -u postgres /usr/lib/postgresql/12/bin/pg_ctl -D /var/lib/postgresql/12/main/ initdb -o "--locale C.UTF-8"
fi
# Initialize PostgreSQL
createPostgresConfig
service postgresql start