From 9764e51a15cf9ad3ba6b1ee37c1f37898875969c Mon Sep 17 00:00:00 2001 From: jared Date: Sat, 28 Jan 2023 16:03:32 +1100 Subject: [PATCH] remove db health check for dependancies --- supabase/docker-compose.yml | 25 +++++++++++++++---------- 1 file changed, 15 insertions(+), 10 deletions(-) diff --git a/supabase/docker-compose.yml b/supabase/docker-compose.yml index 9c9442b..5c8d3f1 100644 --- a/supabase/docker-compose.yml +++ b/supabase/docker-compose.yml @@ -52,8 +52,9 @@ services: container_name: supabase-auth image: supabase/gotrue:v2.40.1 depends_on: - db: # Disable this if you are using an external Postgres database - condition: service_healthy + - db + # db: # Disable this if you are using an external Postgres database + # condition: service_healthy healthcheck: test: [ "CMD", "wget", "--no-verbose", "--tries=1", "--spider", "http://localhost:9999/health" ] timeout: 5s @@ -101,8 +102,9 @@ services: container_name: supabase-rest image: postgrest/postgrest:v9.0.1.20220717 depends_on: - db: # Disable this if you are using an external Postgres database - condition: service_healthy + - db + # db: # Disable this if you are using an external Postgres database + # condition: service_healthy restart: unless-stopped environment: PGRST_DB_URI: postgres://authenticator:${POSTGRES_PASSWORD}@${POSTGRES_HOST}:${POSTGRES_PORT}/${POSTGRES_DB} @@ -115,8 +117,9 @@ services: container_name: realtime-dev.supabase-realtime image: supabase/realtime:v2.1.0 depends_on: - db: # Disable this if you are using an external Postgres database - condition: service_healthy + - db + # db: # Disable this if you are using an external Postgres database + # condition: service_healthy healthcheck: test: [ "CMD", "bash", "-c", "printf \\0 > /dev/tcp/localhost/4000" ] timeout: 5s @@ -146,8 +149,9 @@ services: container_name: supabase-storage image: supabase/storage-api:v0.26.1 depends_on: - db: # Disable this if you are using an external Postgres database - condition: service_healthy + - db + # db: # Disable this if you are using an external Postgres database + # condition: service_healthy rest: condition: service_started imgproxy: @@ -195,8 +199,9 @@ services: container_name: supabase-meta image: supabase/postgres-meta:v0.59.0 depends_on: - db: # Disable this if you are using an external Postgres database - condition: service_healthy + - db + # db: # Disable this if you are using an external Postgres database + # condition: service_healthy restart: unless-stopped environment: PG_META_PORT: 8080