From f8de270fb3c365bb6bca4b0e69e1c599e7ebe731 Mon Sep 17 00:00:00 2001 From: "C. Cassel" Date: Thu, 19 Mar 2026 16:48:39 -0400 Subject: [PATCH] fix: use supabase_auth_admin role 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 49cb5e2..4af78e3 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://postgres:${DB_PASSWORD:-postgres}@db:5432/postgres?sslmode=disable + GOTRUE_DB_DATABASE_URL: postgres://supabase_auth_admin:${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'