Skip to content

Commit

Permalink
fix(studio): update studio api to proxy pgmeta query
Browse files Browse the repository at this point in the history
  • Loading branch information
sweatybridge committed Nov 9, 2023
1 parent 9d767db commit dddb3fe
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions internal/start/start.go
Original file line number Diff line number Diff line change
Expand Up @@ -816,6 +816,8 @@ EOF
fmt.Sprintf("LOGFLARE_URL=http://%v:4000", utils.LogflareId),
fmt.Sprintf("NEXT_PUBLIC_ENABLE_LOGS=%v", utils.Config.Analytics.Enabled),
fmt.Sprintf("NEXT_ANALYTICS_BACKEND_PROVIDER=%v", utils.Config.Analytics.Backend),
// Ref: https://github.com/vercel/next.js/issues/51684#issuecomment-1612834913
"HOSTNAME=0.0.0.0",
},
Healthcheck: &container.HealthConfig{
Test: []string{"CMD", "node", "-e", "require('http').get('http://127.0.0.1:3000/api/profile', (r) => {if (r.statusCode !== 200) throw new Error(r.statusCode)})"},
Expand Down
2 changes: 1 addition & 1 deletion internal/utils/misc.go
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ const (
DifferImage = "supabase/pgadmin-schema-diff:cli-0.0.5"
MigraImage = "djrobstep/migra:3.0.1621480950"
PgmetaImage = "supabase/postgres-meta:v0.68.0"
StudioImage = "supabase/studio:20231023-7e2cd92"
StudioImage = "supabase/studio:20231109-b9016a3"
ImageProxyImage = "darthsim/imgproxy:v3.8.0"
EdgeRuntimeImage = "supabase/edge-runtime:v1.22.4"
VectorImage = "timberio/vector:0.28.1-alpine"
Expand Down

0 comments on commit dddb3fe

Please sign in to comment.