# HG changeset patch
# User smith@nwoca.org
# Date 1500492544 -3600
# Node ID 11fb5ba7f55b4079e45ebf15298d85acda4a19b2
# Parent  de0771f14dd09d0ee7c942b0843c96afe89cb1a8
DEP-12: make postgres 9.6 available

diff -r de0771f14dd0 -r 11fb5ba7f55b pilot/usas-services.yml
--- 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:
diff -r de0771f14dd0 -r 11fb5ba7f55b pilot/usps-services.yml
--- 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:
diff -r de0771f14dd0 -r 11fb5ba7f55b postgres/Dockerfile
--- 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"]