Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 11 additions & 11 deletions supabase/code/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ name: supabase

services:
studio:
image: supabase/studio:20241202-71e5240
image: supabase/studio:latest
restart: unless-stopped
healthcheck:
test:
Expand Down Expand Up @@ -48,7 +48,7 @@ services:
# NEXT_ANALYTICS_BACKEND_PROVIDER: bigquery

kong:
image: kong:2.8.1
image: kong:latest
restart: unless-stopped
# https://unix.stackexchange.com/a/294837
entrypoint: bash -c 'eval "echo \"$$(cat ~/temp.yml)\"" > ~/kong.yml &&
Expand Down Expand Up @@ -159,7 +159,7 @@ services:


rest:
image: postgrest/postgrest:v12.2.0
image: postgrest/postgrest:latest
depends_on:
db:
# Disable this if you are using an external Postgres database
Expand Down Expand Up @@ -222,7 +222,7 @@ services:

# To use S3 backed storage: docker compose -f docker-compose.yml -f docker-compose.s3.yml up
storage:
image: supabase/storage-api:v1.11.13
image: supabase/storage-api:latest
depends_on:
db:
# Disable this if you are using an external Postgres database
Expand Down Expand Up @@ -264,7 +264,7 @@ services:
- ./volumes/storage:/var/lib/storage:z

imgproxy:
image: darthsim/imgproxy:v3.8.0
image: darthsim/imgproxy:latest
healthcheck:
test: [ "CMD", "imgproxy", "health" ]
timeout: 5s
Expand All @@ -279,7 +279,7 @@ services:
- ./volumes/storage:/var/lib/storage:z

meta:
image: supabase/postgres-meta:v0.84.2
image: supabase/postgres-meta:latest
depends_on:
db:
# Disable this if you are using an external Postgres database
Expand All @@ -296,7 +296,7 @@ services:
PG_META_DB_PASSWORD: ${POSTGRES_PASSWORD}

functions:
image: supabase/edge-runtime:v1.65.3
image: supabase/edge-runtime:latest
restart: unless-stopped
depends_on:
analytics:
Expand All @@ -317,7 +317,7 @@ services:
- /home/deno/functions/main

analytics:
image: supabase/logflare:1.4.0
image: supabase/logflare:latest
healthcheck:
test: [ "CMD", "curl", "http://localhost:4000/health" ]
timeout: 5s
Expand Down Expand Up @@ -357,7 +357,7 @@ services:

# Comment out everything below this point if you are using an external Postgres database
db:
image: supabase/postgres:15.6.1.139
image: supabase/postgres:latest
healthcheck:
test: pg_isready -U postgres -h localhost
interval: 5s
Expand Down Expand Up @@ -403,7 +403,7 @@ services:
- db-config:/etc/postgresql-custom

vector:
image: timberio/vector:0.28.1-alpine
image: timberio/vector:latest
healthcheck:
test:
[
Expand All @@ -427,7 +427,7 @@ services:

# Update the DATABASE_URL if you are using an external Postgres database
supavisor:
image: supabase/supavisor:1.1.56
image: supabase/supavisor:latest
healthcheck:
test: curl -sSfL --head -o /dev/null "http://127.0.0.1:4000/api/health"
interval: 10s
Expand Down