From 61d2848a211536f1df1351dc8d42a18cc07f29f5 Mon Sep 17 00:00:00 2001 From: LunaUrsa <1836049+LunaUrsa@users.noreply.github.com> Date: Tue, 3 Oct 2023 12:21:00 -0500 Subject: [PATCH] Downgrade postgres container --- src/docker/Dockerfile.postgres | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/docker/Dockerfile.postgres b/src/docker/Dockerfile.postgres index 6dd0b825a..27424c2d7 100644 --- a/src/docker/Dockerfile.postgres +++ b/src/docker/Dockerfile.postgres @@ -1,5 +1,5 @@ # All this does is copy the init script into the container so it can run on first start -FROM postgres +FROM postgres:15.4 -COPY ./src/postgres/init-db.sh ./docker-entrypoint-initdb.d/initialize-database.sh \ No newline at end of file +COPY ./src/postgres/init-db.sh ./docker-entrypoint-initdb.d/initialize-database.sh \ No newline at end of file