From 288dfdce4504c640b9762d6175df6b945e254f37 Mon Sep 17 00:00:00 2001 From: Mauricio Siu Date: Wed, 8 Jul 2026 02:11:39 -0600 Subject: [PATCH] fix: mount postgres volume at new PGDATA path for postgres:18 The official postgres:18 image moved PGDATA from /var/lib/postgresql/data to /var/lib/postgresql. Mounting the volume at the old path made the entrypoint abort and the postgresql container restart-loop, failing the deploy with "dependency postgresql failed to start". Mounting the volume at /var/lib/postgresql fixes the deploy; server responds 200 on /if/flow/initial-setup/. Co-Authored-By: Claude Fable 5 --- blueprints/authentik/docker-compose.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/blueprints/authentik/docker-compose.yml b/blueprints/authentik/docker-compose.yml index 95703909..e0c3c252 100644 --- a/blueprints/authentik/docker-compose.yml +++ b/blueprints/authentik/docker-compose.yml @@ -10,7 +10,7 @@ services: retries: 5 timeout: 5s volumes: - - database:/var/lib/postgresql/data + - database:/var/lib/postgresql environment: POSTGRES_PASSWORD: ${PG_PASS} POSTGRES_USER: ${PG_USER}