update to postgres 14

This commit is contained in:
Sebastian Hugentobler 2022-02-12 15:51:49 +01:00
parent 34cd85d718
commit 5103f5b01f
Signed by: shu
GPG Key ID: BB32CF3CA052C2F0

View File

@ -2,7 +2,7 @@ FROM thallian/confd-env:latest
ENV PGDATA /var/lib/postgresql/data
RUN apk add --no-cache postgresql postgresql-contrib
RUN apk add --no-cache postgresql14 postgresql14-contrib
RUN mkdir -p /run/postgresql && mkdir -p $PGDATA
RUN chown -R postgres /run/postgresql && chown -R postgres $PGDATA