Update PostgreSQL container image to Buster

This commit is contained in:
Jan Dittberner 2019-11-04 22:25:09 +01:00
parent d231f90c90
commit a135fe9f73
3 changed files with 105 additions and 105 deletions

View file

@ -1,4 +1,4 @@
FROM debian:stretch
FROM debian:buster
LABEL maintainer "Jan Dittberner <jan@dittberner.info>"
RUN apt-get update \
@ -11,7 +11,7 @@ RUN apt-get update \
EXPOSE 5432
VOLUME /var/lib/postgresql/
COPY pg_hba.conf /etc/postgresql/9.6/main/pg_hba.conf
COPY pg_hba.conf /etc/postgresql/11/main/pg_hba.conf
COPY startup.sh /srv/
ENTRYPOINT ["dumb-init"]