From 1614c191026f3927347eef8f73b377a66b09a317 Mon Sep 17 00:00:00 2001 From: linus Date: Fri, 11 Sep 2026 18:34:52 +0200 Subject: [PATCH] fix: correct DATABASE_URL password placeholder in docker-compose.yml The 'postgres' password was literally written as the masked '***' placeholder (copy-paste artifact), causing Prisma P1000 auth failures against the db service. Set it to match POSTGRES_PASSWORD. --- docker-compose.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker-compose.yml b/docker-compose.yml index 8ea978f..b55756f 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -28,7 +28,7 @@ services: env_file: - .env environment: - DATABASE_URL: postgresql://postgres:***@db:5432/kcapp?schema=public + DATABASE_URL: postgresql://postgres:postgres@db:5432/kcapp?schema=public PORT: "3000" GOOGLE_APPLICATION_CREDENTIALS: /app/serviceAccount.json APP_BASE_URL: http://localhost:3010