From 4d8360d4269795b036a800999e09e8e09e0edeb6 Mon Sep 17 00:00:00 2001 From: "Simon L." Date: Tue, 14 Apr 2026 16:29:24 +0200 Subject: [PATCH] postgres: fix another detail Signed-off-by: Simon L. --- Containers/postgresql/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Containers/postgresql/Dockerfile b/Containers/postgresql/Dockerfile index 76815c37..fc42bebc 100644 --- a/Containers/postgresql/Dockerfile +++ b/Containers/postgresql/Dockerfile @@ -2,7 +2,7 @@ # From https://github.com/docker-library/postgres/blob/master/18/alpine3.23/Dockerfile FROM postgres:18.3-alpine -ENV PGDATA=/var/lib/postgresql +ENV PGDATA=/var/lib/postgresql/data COPY --chmod=775 start.sh /start.sh COPY --chmod=775 healthcheck.sh /healthcheck.sh