comparison postgres/Dockerfile @ 151:11fb5ba7f55b

DEP-12: make postgres 9.6 available
author smith@nwoca.org
date Wed, 19 Jul 2017 20:29:04 +0100
parents 4b8eb7301ae0
children b0b52c426f16
comparison
equal deleted inserted replaced
150:de0771f14dd0 151:11fb5ba7f55b
1 # 1 #
2 # Docker file to create postgres image for ssdt applications 2 # Docker file to create postgres image for ssdt applications
3 3
4 FROM postgres:9.4.11 4 FROM postgres:9.6.3
5 5
6 MAINTAINER Dave Smith smith@nwoca.org 6 MAINTAINER Dave Smith smith@nwoca.org
7 7
8 ENV DB_NAME=database \ 8 ENV DB_NAME=database \
9 DB_USER=dbuser \ 9 DB_USER=dbuser \
24 24
25 COPY ssdt-entrypoint.sh /usr/local/bin/ 25 COPY ssdt-entrypoint.sh /usr/local/bin/
26 26
27 RUN chmod 755 /usr/local/bin/ssdt-entrypoint.sh 27 RUN chmod 755 /usr/local/bin/ssdt-entrypoint.sh
28 28
29 LABEL "io.ssdt.type"="db"
30
29 ENTRYPOINT ["ssdt-entrypoint.sh"] 31 ENTRYPOINT ["ssdt-entrypoint.sh"]
30 32
31 CMD ["postgres"] 33 CMD ["postgres"]
32 34