From 7621cc4eb557f6eb8a3a3fea32325c18f5f80ec6 Mon Sep 17 00:00:00 2001 From: Inder Singh <85822513+singh-inder@users.noreply.github.com> Date: Mon, 9 Feb 2026 13:26:00 +0530 Subject: [PATCH] fix(studio): use postgres user for read write operations --- internal/start/start.go | 1 + 1 file changed, 1 insertion(+) diff --git a/internal/start/start.go b/internal/start/start.go index c35efa2e36..dd9ca740fe 100644 --- a/internal/start/start.go +++ b/internal/start/start.go @@ -1173,6 +1173,7 @@ EOF "SNIPPETS_MANAGEMENT_FOLDER=" + containerSnippetsPath, // Ref: https://github.com/vercel/next.js/issues/51684#issuecomment-1612834913 "HOSTNAME=0.0.0.0", + "POSTGRES_USER_READ_WRITE=postgres", }, Healthcheck: &container.HealthConfig{ Test: []string{"CMD-SHELL", `node --eval="fetch('http://127.0.0.1:3000/api/platform/profile').then((r) => {if (!r.ok) throw new Error(r.status)})"`},