Compare commits

...

7 Commits

Author SHA1 Message Date
Swifty
7af29d6361 Update docker-compose.yml 2025-08-08 16:25:28 +02:00
Swifty
d1cb03c5ee Update docker-compose.yml 2025-08-08 16:25:03 +02:00
Swifty
6539f3963a Merge branch 'dev' into swiftyos/simplify-local-supabase 2025-08-08 16:24:30 +02:00
Swifty
d703f97aa5 Update docker-compose.yml 2025-08-08 16:22:34 +02:00
Swifty
ffdbf7fcb8 Merge branch 'dev' into swiftyos/simplify-local-supabase 2025-08-08 15:28:35 +02:00
Swifty
8658dcf9a6 Merge branch 'dev' into swiftyos/simplify-local-supabase 2025-08-08 11:13:08 +02:00
Swifty
e19d204043 simplified local supabase deployment 2025-08-07 14:24:38 +02:00
2 changed files with 0 additions and 66 deletions

View File

@@ -59,9 +59,6 @@ services:
volumes: volumes:
# https://github.com/supabase/supabase/issues/12661 # https://github.com/supabase/supabase/issues/12661
- ./volumes/api/kong.yml:/home/kong/temp.yml:ro - ./volumes/api/kong.yml:/home/kong/temp.yml:ro
depends_on:
analytics:
condition: service_healthy
environment: environment:
KONG_DATABASE: "off" KONG_DATABASE: "off"
KONG_DECLARATIVE_CONFIG: /home/kong/kong.yml KONG_DECLARATIVE_CONFIG: /home/kong/kong.yml
@@ -98,8 +95,6 @@ services:
db: db:
# Disable this if you are using an external Postgres database # Disable this if you are using an external Postgres database
condition: service_healthy condition: service_healthy
analytics:
condition: service_healthy
environment: environment:
GOTRUE_API_HOST: 0.0.0.0 GOTRUE_API_HOST: 0.0.0.0
GOTRUE_API_PORT: 9999 GOTRUE_API_PORT: 9999
@@ -419,9 +414,6 @@ services:
interval: 5s interval: 5s
timeout: 5s timeout: 5s
retries: 10 retries: 10
depends_on:
vector:
condition: service_healthy
environment: environment:
POSTGRES_HOST: /var/run/postgresql POSTGRES_HOST: /var/run/postgresql
PGPORT: ${POSTGRES_PORT} PGPORT: ${POSTGRES_PORT}

View File

@@ -102,13 +102,6 @@ services:
# file: ./docker-compose.platform.yml # file: ./docker-compose.platform.yml
# service: frontend # service: frontend
# Supabase services
studio:
<<: *supabase-services
extends:
file: ./db/docker/docker-compose.yml
service: studio
kong: kong:
<<: *supabase-services <<: *supabase-services
extends: extends:
@@ -123,47 +116,6 @@ services:
environment: environment:
GOTRUE_MAILER_AUTOCONFIRM: true GOTRUE_MAILER_AUTOCONFIRM: true
rest:
<<: *supabase-services
extends:
file: ./db/docker/docker-compose.yml
service: rest
realtime:
<<: *supabase-services
extends:
file: ./db/docker/docker-compose.yml
service: realtime
storage:
<<: *supabase-services
extends:
file: ./db/docker/docker-compose.yml
service: storage
imgproxy:
<<: *supabase-services
extends:
file: ./db/docker/docker-compose.yml
service: imgproxy
meta:
<<: *supabase-services
extends:
file: ./db/docker/docker-compose.yml
service: meta
functions:
<<: *supabase-services
extends:
file: ./db/docker/docker-compose.yml
service: functions
analytics:
<<: *supabase-services
extends:
file: ./db/docker/docker-compose.yml
service: analytics
db: db:
<<: *supabase-services <<: *supabase-services
@@ -173,12 +125,6 @@ services:
ports: ports:
- ${POSTGRES_PORT}:5432 # We don't use Supavisor locally, so we expose the db directly. - ${POSTGRES_PORT}:5432 # We don't use Supavisor locally, so we expose the db directly.
vector:
<<: *supabase-services
extends:
file: ./db/docker/docker-compose.yml
service: vector
deps: deps:
<<: *supabase-services <<: *supabase-services
profiles: profiles:
@@ -186,13 +132,9 @@ services:
image: busybox image: busybox
command: /bin/true command: /bin/true
depends_on: depends_on:
- studio
- kong - kong
- auth - auth
- meta
- analytics
- db - db
- vector
- redis - redis
- rabbitmq - rabbitmq
- clamav - clamav