From 4fa5733775f4fa79dfd9f7e30feccae1e186ae1f Mon Sep 17 00:00:00 2001 From: Lilith Date: Sun, 4 Jan 2026 17:49:34 -0800 Subject: [PATCH] =?UTF-8?q?fix(e2e):=20=F0=9F=90=9B=20update=20database=20?= =?UTF-8?q?credentials=20in=20docker-compose.e2e.yml?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../frontend-admin/e2e/docker-compose.e2e.yml | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/features/platform-admin/frontend-admin/e2e/docker-compose.e2e.yml b/features/platform-admin/frontend-admin/e2e/docker-compose.e2e.yml index ef004aaee..4194d8f76 100644 --- a/features/platform-admin/frontend-admin/e2e/docker-compose.e2e.yml +++ b/features/platform-admin/frontend-admin/e2e/docker-compose.e2e.yml @@ -148,11 +148,12 @@ services: environment: NODE_ENV: production PORT: 3015 - DATABASE_HOST: postgres - DATABASE_PORT: 5432 - DATABASE_USER: analytics - DATABASE_PASSWORD: analytics_e2e_test - DATABASE_NAME: analytics_e2e + # attributes-api uses DB_* instead of DATABASE_* + DB_HOST: postgres + DB_PORT: 5432 + DB_USER: analytics + DB_PASSWORD: analytics_e2e_test + DB_NAME: analytics_e2e DISABLE_AUTH: "true" depends_on: postgres: