Skip to content

Commit

Permalink
Merge branch 'develop' into j0/add_http_hook_config
Browse files Browse the repository at this point in the history
  • Loading branch information
J0 authored Apr 9, 2024
2 parents b7de17d + c9cce58 commit 759993a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion internal/start/start.go
Original file line number Diff line number Diff line change
Expand Up @@ -870,7 +870,7 @@ EOF
"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)})"},
Test: []string{"CMD", "node", "-e", "fetch('http://127.0.0.1:3000/api/profile', (r) => {if (r.statusCode !== 200) throw new Error(r.statusCode)})"},
Interval: 10 * time.Second,
Timeout: 2 * time.Second,
Retries: 3,
Expand Down
2 changes: 1 addition & 1 deletion internal/utils/misc.go
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ const (
DifferImage = "supabase/pgadmin-schema-diff:cli-0.0.5"
MigraImage = "supabase/migra:3.0.1663481299"
PgmetaImage = "supabase/postgres-meta:v0.80.0"
StudioImage = "supabase/studio:20240326-5e5586d"
StudioImage = "supabase/studio:20240408-6bf3b81"
ImageProxyImage = "darthsim/imgproxy:v3.8.0"
EdgeRuntimeImage = "supabase/edge-runtime:v1.41.3"
VectorImage = "timberio/vector:0.28.1-alpine"
Expand Down

0 comments on commit 759993a

Please sign in to comment.