From 00b700623f1ac171ef5114aba7f2ec0395553e5d Mon Sep 17 00:00:00 2001 From: "C. Cassel" Date: Thu, 19 Mar 2026 16:49:38 -0400 Subject: [PATCH] fix: use postgres superuser with auth search_path for GoTrue Co-Authored-By: Claude Opus 4.6 (1M context) --- docker-compose.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker-compose.yml b/docker-compose.yml index 4af78e3..5d66139 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -27,7 +27,7 @@ services: GOTRUE_API_PORT: 9999 API_EXTERNAL_URL: ${SITE_URL:-http://localhost:5173}/auth GOTRUE_DB_DRIVER: postgres - GOTRUE_DB_DATABASE_URL: postgres://supabase_auth_admin:${DB_PASSWORD:-postgres}@db:5432/postgres?sslmode=disable&search_path=auth + GOTRUE_DB_DATABASE_URL: postgres://postgres:${DB_PASSWORD:-postgres}@db:5432/postgres?sslmode=disable&search_path=auth GOTRUE_SITE_URL: ${SITE_URL:-http://localhost:5173} GOTRUE_URI_ALLOW_LIST: ${SITE_URL:-http://localhost:5173}/** GOTRUE_DISABLE_SIGNUP: 'false'