changeset 151:11fb5ba7f55b

DEP-12: make postgres 9.6 available
author smith@nwoca.org
date Wed, 19 Jul 2017 20:29:04 +0100
parents de0771f14dd0
children d64806928eca
files pilot/usas-services.yml pilot/usps-services.yml postgres/Dockerfile
diffstat 3 files changed, 5 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/pilot/usas-services.yml	Wed Jul 19 18:27:30 2017 +0100
+++ b/pilot/usas-services.yml	Wed Jul 19 20:29:04 2017 +0100
@@ -1,6 +1,6 @@
   usasdb:
     restart: unless-stopped
-    image: docker.ssdt.io/ssdt-postgres:4
+    image: docker.ssdt.io/ssdt-postgres:5
     volumes:
       - usasdata:/var/lib/postgresql/data
     networks:
--- a/pilot/usps-services.yml	Wed Jul 19 18:27:30 2017 +0100
+++ b/pilot/usps-services.yml	Wed Jul 19 20:29:04 2017 +0100
@@ -1,6 +1,6 @@
   uspsdb:
     restart: unless-stopped
-    image: docker.ssdt.io/ssdt-postgres:4
+    image: docker.ssdt.io/ssdt-postgres:5
     volumes:
       - uspsdata:/var/lib/postgresql/data
     networks:
--- a/postgres/Dockerfile	Wed Jul 19 18:27:30 2017 +0100
+++ b/postgres/Dockerfile	Wed Jul 19 20:29:04 2017 +0100
@@ -1,7 +1,7 @@
 #
 # Docker file to create postgres image for ssdt applications
 
-FROM postgres:9.4.11
+FROM postgres:9.6.3
 
 MAINTAINER Dave Smith smith@nwoca.org
 
@@ -26,6 +26,8 @@
 
 RUN chmod 755 /usr/local/bin/ssdt-entrypoint.sh
 
+LABEL "io.ssdt.type"="db"
+
 ENTRYPOINT ["ssdt-entrypoint.sh"]
 
 CMD ["postgres"]