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.
This commit is contained in:
2026-09-11 18:34:52 +02:00
parent 4902cfe85d
commit 1614c19102
+1 -1
View File
@@ -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