From 2ee1748c0620e860415a777ba69f2f5f13fb1063 Mon Sep 17 00:00:00 2001 From: Markus Demleitner <msdemlei@ari.uni-heidelberg.de> Date: Thu, 20 Sep 2018 15:09:13 +0200 Subject: [PATCH] stretch uses postgres 9.6. --- dockerfile/bin/dachs.sh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/dockerfile/bin/dachs.sh b/dockerfile/bin/dachs.sh index f730413..082b6b8 100755 --- a/dockerfile/bin/dachs.sh +++ b/dockerfile/bin/dachs.sh @@ -13,9 +13,9 @@ echo 'pointing to this container here.' echo '===================================================' echo '' -export PGDATA=/var/lib/postgresql/9.4 +export PGDATA=/var/lib/postgresql/9.6 # postgres needs this directory for log files; then start postgres -mkdir -p -m 777 /var/run/postgresql/9.4-main.pg_stat_tmp/ -su - postgres -c "/usr/lib/postgresql/9.4/bin/postgres \ - -c config_file=/etc/postgresql/9.4/main/postgresql.conf \ +mkdir -p -m 777 /var/run/postgresql/9.6-main.pg_stat_tmp/ +su - postgres -c "/usr/lib/postgresql/9.6/bin/postgres \ + -c config_file=/etc/postgresql/9.6/main/postgresql.conf \ -c logging_collector=on" -- GitLab