mirror of
https://github.com/Significant-Gravitas/AutoGPT.git
synced 2026-02-09 14:25:25 -05:00
Compare commits
1 Commits
fix/execut
...
avqdv7-cod
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
27f25b2b36 |
@@ -7,10 +7,15 @@
|
|||||||
|
|
||||||
name: supabase
|
name: supabase
|
||||||
|
|
||||||
|
x-envfile: &env_file
|
||||||
|
env_file:
|
||||||
|
- .env
|
||||||
|
|
||||||
services:
|
services:
|
||||||
|
|
||||||
studio:
|
studio:
|
||||||
container_name: supabase-studio
|
container_name: supabase-studio
|
||||||
|
<<: *env_file
|
||||||
image: supabase/studio:20250224-d10db0f
|
image: supabase/studio:20250224-d10db0f
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
healthcheck:
|
healthcheck:
|
||||||
@@ -51,6 +56,7 @@ services:
|
|||||||
|
|
||||||
kong:
|
kong:
|
||||||
container_name: supabase-kong
|
container_name: supabase-kong
|
||||||
|
<<: *env_file
|
||||||
image: kong:2.8.1
|
image: kong:2.8.1
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
ports:
|
ports:
|
||||||
@@ -79,6 +85,7 @@ services:
|
|||||||
|
|
||||||
auth:
|
auth:
|
||||||
container_name: supabase-auth
|
container_name: supabase-auth
|
||||||
|
<<: *env_file
|
||||||
image: supabase/gotrue:v2.170.0
|
image: supabase/gotrue:v2.170.0
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
healthcheck:
|
healthcheck:
|
||||||
@@ -162,6 +169,7 @@ services:
|
|||||||
|
|
||||||
rest:
|
rest:
|
||||||
container_name: supabase-rest
|
container_name: supabase-rest
|
||||||
|
<<: *env_file
|
||||||
image: postgrest/postgrest:v12.2.8
|
image: postgrest/postgrest:v12.2.8
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
depends_on:
|
depends_on:
|
||||||
@@ -186,6 +194,7 @@ services:
|
|||||||
realtime:
|
realtime:
|
||||||
# This container name looks inconsistent but is correct because realtime constructs tenant id by parsing the subdomain
|
# This container name looks inconsistent but is correct because realtime constructs tenant id by parsing the subdomain
|
||||||
container_name: realtime-dev.supabase-realtime
|
container_name: realtime-dev.supabase-realtime
|
||||||
|
<<: *env_file
|
||||||
image: supabase/realtime:v2.34.40
|
image: supabase/realtime:v2.34.40
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
depends_on:
|
depends_on:
|
||||||
@@ -231,6 +240,7 @@ services:
|
|||||||
# To use S3 backed storage: docker compose -f docker-compose.yml -f docker-compose.s3.yml up
|
# To use S3 backed storage: docker compose -f docker-compose.yml -f docker-compose.s3.yml up
|
||||||
storage:
|
storage:
|
||||||
container_name: supabase-storage
|
container_name: supabase-storage
|
||||||
|
<<: *env_file
|
||||||
image: supabase/storage-api:v1.19.3
|
image: supabase/storage-api:v1.19.3
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
volumes:
|
volumes:
|
||||||
@@ -274,6 +284,7 @@ services:
|
|||||||
|
|
||||||
imgproxy:
|
imgproxy:
|
||||||
container_name: supabase-imgproxy
|
container_name: supabase-imgproxy
|
||||||
|
<<: *env_file
|
||||||
image: darthsim/imgproxy:v3.8.0
|
image: darthsim/imgproxy:v3.8.0
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
volumes:
|
volumes:
|
||||||
@@ -296,6 +307,7 @@ services:
|
|||||||
|
|
||||||
meta:
|
meta:
|
||||||
container_name: supabase-meta
|
container_name: supabase-meta
|
||||||
|
<<: *env_file
|
||||||
image: supabase/postgres-meta:v0.86.1
|
image: supabase/postgres-meta:v0.86.1
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
depends_on:
|
depends_on:
|
||||||
@@ -314,6 +326,7 @@ services:
|
|||||||
|
|
||||||
functions:
|
functions:
|
||||||
container_name: supabase-edge-functions
|
container_name: supabase-edge-functions
|
||||||
|
<<: *env_file
|
||||||
image: supabase/edge-runtime:v1.67.2
|
image: supabase/edge-runtime:v1.67.2
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
volumes:
|
volumes:
|
||||||
@@ -338,6 +351,7 @@ services:
|
|||||||
|
|
||||||
analytics:
|
analytics:
|
||||||
container_name: supabase-analytics
|
container_name: supabase-analytics
|
||||||
|
<<: *env_file
|
||||||
image: supabase/logflare:1.12.5
|
image: supabase/logflare:1.12.5
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
ports:
|
ports:
|
||||||
@@ -386,6 +400,7 @@ services:
|
|||||||
# Comment out everything below this point if you are using an external Postgres database
|
# Comment out everything below this point if you are using an external Postgres database
|
||||||
db:
|
db:
|
||||||
container_name: supabase-db
|
container_name: supabase-db
|
||||||
|
<<: *env_file
|
||||||
image: supabase/postgres:15.8.1.049
|
image: supabase/postgres:15.8.1.049
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
volumes:
|
volumes:
|
||||||
@@ -443,6 +458,7 @@ services:
|
|||||||
|
|
||||||
vector:
|
vector:
|
||||||
container_name: supabase-vector
|
container_name: supabase-vector
|
||||||
|
<<: *env_file
|
||||||
image: timberio/vector:0.28.1-alpine
|
image: timberio/vector:0.28.1-alpine
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
volumes:
|
volumes:
|
||||||
@@ -472,6 +488,7 @@ services:
|
|||||||
# Update the DATABASE_URL if you are using an external Postgres database
|
# Update the DATABASE_URL if you are using an external Postgres database
|
||||||
supavisor:
|
supavisor:
|
||||||
container_name: supabase-pooler
|
container_name: supabase-pooler
|
||||||
|
<<: *env_file
|
||||||
image: supabase/supavisor:2.4.12
|
image: supabase/supavisor:2.4.12
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
ports:
|
ports:
|
||||||
|
|||||||
Reference in New Issue
Block a user