update templates 30.08.24

This commit is contained in:
serban-alexandru
2024-08-30 11:34:52 +03:00
parent a1e4cc61cf
commit 9895741b66
35 changed files with 986 additions and 173 deletions
+15 -19
View File
@@ -9,7 +9,7 @@ version: "3.8"
services:
studio:
image: supabase/studio:20240701-05dfbec
image: supabase/studio:20240729-ce42139
restart: unless-stopped
healthcheck:
test:
@@ -17,7 +17,7 @@ services:
"CMD",
"node",
"-e",
"require('http').get('http://localhost:3000/api/profile', (r) => {if (r.statusCode !== 200) throw new Error(r.statusCode)})"
"require('http').get('http://localhost:3000/api/profile', (r) => {if (r.statusCode !== 200) throw new Error(r.statusCode)})",
]
timeout: 5s
interval: 5s
@@ -71,7 +71,7 @@ services:
- ./volumes/api/kong.yml:/home/kong/temp.yml:ro
auth:
image: supabase/gotrue:v2.151.0
image: supabase/gotrue:v2.158.1
depends_on:
db:
# Disable this if you are using an external Postgres database
@@ -86,7 +86,7 @@ services:
"--no-verbose",
"--tries=1",
"--spider",
"http://localhost:9999/health"
"http://localhost:9999/health",
]
timeout: 5s
interval: 5s
@@ -139,9 +139,6 @@ services:
# GOTRUE_HOOK_PASSWORD_VERIFICATION_ATTEMPT_ENABLED="true"
# GOTRUE_HOOK_PASSWORD_VERIFICATION_ATTEMPT_URI="pg-functions://postgres/public/password_verification_attempt"
rest:
image: postgrest/postgrest:v12.2.0
depends_on:
@@ -163,7 +160,7 @@ services:
realtime:
# This container name looks inconsistent but is correct because realtime constructs tenant id by parsing the subdomain
image: supabase/realtime:v2.29.15
image: supabase/realtime:v2.30.23
depends_on:
db:
# Disable this if you are using an external Postgres database
@@ -181,7 +178,7 @@ services:
"/dev/null",
"-H",
"Authorization: Bearer ${ANON_KEY}",
"http://localhost:4000/api/tenants/realtime-dev/health"
"http://localhost:4000/api/tenants/realtime-dev/health",
]
timeout: 5s
interval: 5s
@@ -194,7 +191,7 @@ services:
DB_USER: supabase_admin
DB_PASSWORD: ${POSTGRES_PASSWORD}
DB_NAME: ${POSTGRES_DB}
DB_AFTER_CONNECT_QUERY: 'SET search_path TO _realtime'
DB_AFTER_CONNECT_QUERY: "SET search_path TO _realtime"
DB_ENC_KEY: supabaserealtime
API_JWT_SECRET: ${JWT_SECRET}
SECRET_KEY_BASE: UpNVntn3cDxHJpq99YMc1T1AQgQpc8kfYTuRgBiYa15BLrx8etQoXz3gZv1/u2oq
@@ -206,7 +203,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.0.6
image: supabase/storage-api:v1.10.1
depends_on:
db:
# Disable this if you are using an external Postgres database
@@ -223,7 +220,7 @@ services:
"--no-verbose",
"--tries=1",
"--spider",
"http://localhost:5000/status"
"http://localhost:5000/status",
]
timeout: 5s
interval: 5s
@@ -250,7 +247,7 @@ services:
imgproxy:
image: darthsim/imgproxy:v3.8.0
healthcheck:
test: [ "CMD", "imgproxy", "health" ]
test: ["CMD", "imgproxy", "health"]
timeout: 5s
interval: 5s
retries: 3
@@ -280,7 +277,7 @@ services:
PG_META_DB_PASSWORD: ${POSTGRES_PASSWORD}
functions:
image: supabase/edge-runtime:v1.55.0
image: supabase/edge-runtime:v1.56.1
restart: unless-stopped
depends_on:
analytics:
@@ -303,7 +300,7 @@ services:
analytics:
image: supabase/logflare:1.4.0
healthcheck:
test: [ "CMD", "curl", "http://localhost:4000/health" ]
test: ["CMD", "curl", "http://localhost:4000/health"]
timeout: 5s
interval: 5s
retries: 10
@@ -341,7 +338,7 @@ services:
# Comment out everything below this point if you are using an external Postgres database
db:
image: supabase/postgres:15.1.1.61
image: supabase/postgres:15.1.1.78
healthcheck:
test: pg_isready -U postgres -h localhost
interval: 5s
@@ -387,13 +384,12 @@ services:
healthcheck:
test:
[
"CMD",
"wget",
"--no-verbose",
"--tries=1",
"--spider",
"http://vector:9001/health"
"http://vector:9001/health",
]
timeout: 5s
interval: 5s
@@ -403,7 +399,7 @@ services:
- ${DOCKER_SOCKET_LOCATION}:/var/run/docker.sock:ro
environment:
LOGFLARE_API_KEY: ${LOGFLARE_API_KEY}
command: [ "--config", "etc/vector/vector.yml" ]
command: ["--config", "etc/vector/vector.yml"]
volumes:
db-config: