From 91877ded3a5e3307a506fececa7826b9eee2859d Mon Sep 17 00:00:00 2001 From: Damien De Paoli Date: Mon, 18 Sep 2023 22:28:04 +1000 Subject: [PATCH] hard-locking postgres version as postgres cant just be updated without it breaking the db, so need to do this by hand when a new version comes out --- db-container/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/db-container/Dockerfile b/db-container/Dockerfile index ef58fa6..2eab0c0 100644 --- a/db-container/Dockerfile +++ b/db-container/Dockerfile @@ -1,4 +1,4 @@ -FROM postgres:latest +FROM postgres:16 USER root ENV TZ=Australia/Melbourne RUN truncate -s0 /tmp/preseed.cfg && \