From e056faf982236f0e58c6d73d1a2404743af2fc29 Mon Sep 17 00:00:00 2001 From: Nils Philippsen Date: Mon, 15 May 2017 11:10:12 +0200 Subject: [PATCH] PostgreSQL 9.5 -> 9.6 --- Dockerfile | 6 +++--- root/usr/share/container-scripts/postgresql/common.sh | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Dockerfile b/Dockerfile index 1f379ca..24ca12d 100644 --- a/Dockerfile +++ b/Dockerfile @@ -10,14 +10,14 @@ FROM registry.fedoraproject.org/fedora:26 # * $POSTGRESQL_ADMIN_PASSWORD (Optional) - Password for the 'postgres' # PostgreSQL administrative account -ENV POSTGRESQL_VERSION=9.5 \ +ENV POSTGRESQL_VERSION=9.6 \ HOME=/var/lib/pgsql \ PGUSER=postgres LABEL io.k8s.description="PostgreSQL is an advanced Object-Relational database management system" \ - io.k8s.display-name="PostgreSQL 9.5" \ + io.k8s.display-name="PostgreSQL 9.6" \ io.openshift.expose-services="5432:postgresql" \ - io.openshift.tags="database,postgresql,postgresql95" \ + io.openshift.tags="database,postgresql,postgresql96" \ com.redhat.component="postgresql" \ maintainer="Pavel Raiskup " \ name="$FCG/postgresql" \ diff --git a/root/usr/share/container-scripts/postgresql/common.sh b/root/usr/share/container-scripts/postgresql/common.sh index 0fde554..76e7dac 100644 --- a/root/usr/share/container-scripts/postgresql/common.sh +++ b/root/usr/share/container-scripts/postgresql/common.sh @@ -134,7 +134,7 @@ function generate_passwd_file() { function initialize_database() { # Initialize the database cluster with utf8 support enabled by default. # This might affect performance, see: - # http://www.postgresql.org/docs/9.5/static/locale.html + # http://www.postgresql.org/docs/9.6/static/locale.html LANG=${LANG:-en_US.utf8} initdb # PostgreSQL configuration.