Merge remote-tracking branch 'origin/main'
# Conflicts: # docker-compose.yml
This commit is contained in:
@@ -6,6 +6,9 @@
|
|||||||
# ⚠️ First deploy: `docker compose up -d` creates the DB from scratch with
|
# ⚠️ First deploy: `docker compose up -d` creates the DB from scratch with
|
||||||
# all Supabase roles/schemas via the image's built-in init scripts, then
|
# all Supabase roles/schemas via the image's built-in init scripts, then
|
||||||
# runs app migrations from the mounted volume.
|
# runs app migrations from the mounted volume.
|
||||||
|
#
|
||||||
|
# 🔒 Port bindings are intentionally omitted — in Dokploy, Traefik handles
|
||||||
|
# external routing. Services communicate via the Docker network.
|
||||||
|
|
||||||
services:
|
services:
|
||||||
# =====================================================
|
# =====================================================
|
||||||
@@ -24,15 +27,16 @@ services:
|
|||||||
environment:
|
environment:
|
||||||
POSTGRES_PASSWORD: ${POSTGRES_PASSWORD}
|
POSTGRES_PASSWORD: ${POSTGRES_PASSWORD}
|
||||||
POSTGRES_DB: postgres
|
POSTGRES_DB: postgres
|
||||||
ports:
|
|
||||||
- '${DB_PORT:-5432}:5432'
|
|
||||||
healthcheck:
|
healthcheck:
|
||||||
test: ['CMD-SHELL', 'pg_isready -U postgres -d postgres']
|
test: ["CMD-SHELL", "pg_isready -U postgres -d postgres"]
|
||||||
interval: 10s
|
interval: 10s
|
||||||
timeout: 5s
|
timeout: 5s
|
||||||
retries: 10
|
retries: 10
|
||||||
|
|
||||||
# Run app migrations, seed, and dev patches after DB is healthy
|
# Run app migrations, seed, and dev patches after DB is healthy.
|
||||||
|
# Also ensures role passwords are set (idempotent) — covers the case
|
||||||
|
# where the DB volume already existed from a previous deployment and
|
||||||
|
# /docker-entrypoint-initdb.d/ scripts didn't re-run.
|
||||||
supabase-db-migrate:
|
supabase-db-migrate:
|
||||||
image: supabase/postgres:15.8.1.060
|
image: supabase/postgres:15.8.1.060
|
||||||
depends_on:
|
depends_on:
|
||||||
@@ -44,9 +48,13 @@ services:
|
|||||||
- ./docker/db/dev-bootstrap.sh:/app-seed/dev-bootstrap.sh:ro
|
- ./docker/db/dev-bootstrap.sh:/app-seed/dev-bootstrap.sh:ro
|
||||||
environment:
|
environment:
|
||||||
PGPASSWORD: ${POSTGRES_PASSWORD}
|
PGPASSWORD: ${POSTGRES_PASSWORD}
|
||||||
entrypoint: ['/bin/sh', '-c']
|
POSTGRES_PASSWORD: ${POSTGRES_PASSWORD}
|
||||||
|
entrypoint: ["/bin/sh", "-c"]
|
||||||
command:
|
command:
|
||||||
- |
|
- |
|
||||||
|
echo "🔑 Ensuring role passwords are set (idempotent)..."
|
||||||
|
psql -h supabase-db -U supabase_admin -d postgres -v ON_ERROR_STOP=0 -c "ALTER ROLE authenticator WITH LOGIN PASSWORD '${POSTGRES_PASSWORD}';" -c "ALTER ROLE supabase_storage_admin WITH LOGIN PASSWORD '${POSTGRES_PASSWORD}';" -c "ALTER ROLE supabase_auth_admin WITH LOGIN PASSWORD '${POSTGRES_PASSWORD}';" -c "ALTER ROLE dashboard_user WITH LOGIN PASSWORD '${POSTGRES_PASSWORD}';" -c "ALTER ROLE postgres WITH PASSWORD '${POSTGRES_PASSWORD}';" -c "CREATE SCHEMA IF NOT EXISTS _realtime;" -c "GRANT ALL ON SCHEMA _realtime TO supabase_admin;" -c "GRANT USAGE ON SCHEMA _realtime TO postgres, anon, authenticated, service_role;" 2>&1 || true
|
||||||
|
echo ""
|
||||||
echo "Running app migrations..."
|
echo "Running app migrations..."
|
||||||
for sql in /app-migrations/*.sql; do
|
for sql in /app-migrations/*.sql; do
|
||||||
echo " → $$sql"
|
echo " → $$sql"
|
||||||
@@ -55,7 +63,7 @@ services:
|
|||||||
echo "✅ App migrations complete."
|
echo "✅ App migrations complete."
|
||||||
echo ""
|
echo ""
|
||||||
sh /app-seed/dev-bootstrap.sh
|
sh /app-seed/dev-bootstrap.sh
|
||||||
restart: 'no'
|
restart: "no"
|
||||||
|
|
||||||
# =====================================================
|
# =====================================================
|
||||||
# Supabase Auth (GoTrue)
|
# Supabase Auth (GoTrue)
|
||||||
@@ -66,6 +74,8 @@ services:
|
|||||||
depends_on:
|
depends_on:
|
||||||
supabase-db:
|
supabase-db:
|
||||||
condition: service_healthy
|
condition: service_healthy
|
||||||
|
supabase-db-migrate:
|
||||||
|
condition: service_completed_successfully
|
||||||
environment:
|
environment:
|
||||||
GOTRUE_API_HOST: 0.0.0.0
|
GOTRUE_API_HOST: 0.0.0.0
|
||||||
GOTRUE_API_PORT: 9999
|
GOTRUE_API_PORT: 9999
|
||||||
@@ -92,15 +102,7 @@ services:
|
|||||||
GOTRUE_MAILER_URLPATHS_RECOVERY: /auth/v1/verify
|
GOTRUE_MAILER_URLPATHS_RECOVERY: /auth/v1/verify
|
||||||
GOTRUE_MAILER_URLPATHS_EMAIL_CHANGE: /auth/v1/verify
|
GOTRUE_MAILER_URLPATHS_EMAIL_CHANGE: /auth/v1/verify
|
||||||
healthcheck:
|
healthcheck:
|
||||||
test:
|
test: ["CMD", "wget", "--no-verbose", "--tries=1", "--spider", "http://localhost:9999/health"]
|
||||||
[
|
|
||||||
'CMD',
|
|
||||||
'wget',
|
|
||||||
'--no-verbose',
|
|
||||||
'--tries=1',
|
|
||||||
'--spider',
|
|
||||||
'http://localhost:9999/health',
|
|
||||||
]
|
|
||||||
interval: 10s
|
interval: 10s
|
||||||
timeout: 5s
|
timeout: 5s
|
||||||
retries: 5
|
retries: 5
|
||||||
@@ -114,21 +116,20 @@ services:
|
|||||||
depends_on:
|
depends_on:
|
||||||
supabase-db:
|
supabase-db:
|
||||||
condition: service_healthy
|
condition: service_healthy
|
||||||
|
supabase-db-migrate:
|
||||||
|
condition: service_completed_successfully
|
||||||
environment:
|
environment:
|
||||||
PGRST_DB_URI: postgres://authenticator:${POSTGRES_PASSWORD}@supabase-db:5432/postgres
|
PGRST_DB_URI: postgres://authenticator:${POSTGRES_PASSWORD}@supabase-db:5432/postgres
|
||||||
PGRST_DB_SCHEMAS: public,storage,graphql_public
|
PGRST_DB_SCHEMAS: public,storage,graphql_public
|
||||||
PGRST_DB_ANON_ROLE: anon
|
PGRST_DB_ANON_ROLE: anon
|
||||||
PGRST_JWT_SECRET: ${JWT_SECRET}
|
PGRST_JWT_SECRET: ${JWT_SECRET}
|
||||||
PGRST_DB_USE_LEGACY_GUCS: 'false'
|
PGRST_DB_USE_LEGACY_GUCS: "false"
|
||||||
healthcheck:
|
healthcheck:
|
||||||
test:
|
test: ["CMD-SHELL", "head -c0 </dev/tcp/localhost/3000 || exit 1"]
|
||||||
[
|
|
||||||
'CMD-SHELL',
|
|
||||||
'wget --no-verbose --tries=1 --spider http://localhost:3000/ || exit 1',
|
|
||||||
]
|
|
||||||
interval: 10s
|
interval: 10s
|
||||||
timeout: 5s
|
timeout: 5s
|
||||||
retries: 5
|
retries: 5
|
||||||
|
start_period: 15s
|
||||||
|
|
||||||
# =====================================================
|
# =====================================================
|
||||||
# Supabase Realtime
|
# Supabase Realtime
|
||||||
@@ -139,6 +140,8 @@ services:
|
|||||||
depends_on:
|
depends_on:
|
||||||
supabase-db:
|
supabase-db:
|
||||||
condition: service_healthy
|
condition: service_healthy
|
||||||
|
supabase-db-migrate:
|
||||||
|
condition: service_completed_successfully
|
||||||
environment:
|
environment:
|
||||||
PORT: 4000
|
PORT: 4000
|
||||||
DB_HOST: supabase-db
|
DB_HOST: supabase-db
|
||||||
@@ -146,20 +149,20 @@ services:
|
|||||||
DB_USER: supabase_admin
|
DB_USER: supabase_admin
|
||||||
DB_PASSWORD: ${POSTGRES_PASSWORD}
|
DB_PASSWORD: ${POSTGRES_PASSWORD}
|
||||||
DB_NAME: postgres
|
DB_NAME: postgres
|
||||||
DB_AFTER_CONNECT_QUERY: 'SET search_path TO _realtime'
|
DB_AFTER_CONNECT_QUERY: "SET search_path TO _realtime"
|
||||||
DB_ENC_KEY: supabaserealtime
|
DB_ENC_KEY: supabaserealtime
|
||||||
API_JWT_SECRET: ${JWT_SECRET}
|
API_JWT_SECRET: ${JWT_SECRET}
|
||||||
SECRET_KEY_BASE: ${SECRET_KEY_BASE:-UpNVntn3cDxHJpq99YMc1T1AQgQpc8kfYTuRgBiYa15BLrx8etQoXz3gZv1/u2oq}
|
SECRET_KEY_BASE: ${SECRET_KEY_BASE:-UpNVntn3cDxHJpq99YMc1T1AQgQpc8kfYTuRgBiYa15BLrx8etQoXz3gZv1/u2oq}
|
||||||
ERL_AFLAGS: '-proto_dist inet_tcp'
|
ERL_AFLAGS: "-proto_dist inet_tcp"
|
||||||
DNS_NODES: "''"
|
DNS_NODES: "''"
|
||||||
RLIMIT_NOFILE: '10000'
|
RLIMIT_NOFILE: "10000"
|
||||||
APP_NAME: realtime
|
APP_NAME: realtime
|
||||||
SEED_SELF_HOST: 'true'
|
SEED_SELF_HOST: "true"
|
||||||
REPLICATION_MODE: RLS
|
REPLICATION_MODE: RLS
|
||||||
REPLICATION_POLL_INTERVAL: 100
|
REPLICATION_POLL_INTERVAL: 100
|
||||||
SECURE_CHANNELS: 'true'
|
SECURE_CHANNELS: "true"
|
||||||
SLOT_NAME: supabase_realtime_rls
|
SLOT_NAME: supabase_realtime_rls
|
||||||
TEMPORARY_SLOT: 'true'
|
TEMPORARY_SLOT: "true"
|
||||||
MAX_RECORD_BYTES: 1048576
|
MAX_RECORD_BYTES: 1048576
|
||||||
|
|
||||||
# =====================================================
|
# =====================================================
|
||||||
@@ -171,6 +174,8 @@ services:
|
|||||||
depends_on:
|
depends_on:
|
||||||
supabase-db:
|
supabase-db:
|
||||||
condition: service_healthy
|
condition: service_healthy
|
||||||
|
supabase-db-migrate:
|
||||||
|
condition: service_completed_successfully
|
||||||
supabase-rest:
|
supabase-rest:
|
||||||
condition: service_started
|
condition: service_started
|
||||||
supabase-imgproxy:
|
supabase-imgproxy:
|
||||||
@@ -191,14 +196,11 @@ services:
|
|||||||
GLOBAL_S3_BUCKET: stub
|
GLOBAL_S3_BUCKET: stub
|
||||||
IMGPROXY_URL: http://supabase-imgproxy:8080
|
IMGPROXY_URL: http://supabase-imgproxy:8080
|
||||||
healthcheck:
|
healthcheck:
|
||||||
test:
|
test: ["CMD-SHELL", "wget --no-verbose --tries=1 --spider http://localhost:5000/status || exit 1"]
|
||||||
[
|
|
||||||
'CMD-SHELL',
|
|
||||||
'wget --no-verbose --tries=1 --spider http://localhost:5000/status || exit 1',
|
|
||||||
]
|
|
||||||
interval: 10s
|
interval: 10s
|
||||||
timeout: 5s
|
timeout: 5s
|
||||||
retries: 5
|
retries: 5
|
||||||
|
start_period: 15s
|
||||||
|
|
||||||
# =====================================================
|
# =====================================================
|
||||||
# Supabase imgproxy (image transformations)
|
# Supabase imgproxy (image transformations)
|
||||||
@@ -207,10 +209,10 @@ services:
|
|||||||
image: darthsim/imgproxy:v3.8.0
|
image: darthsim/imgproxy:v3.8.0
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
environment:
|
environment:
|
||||||
IMGPROXY_BIND: ':8080'
|
IMGPROXY_BIND: ":8080"
|
||||||
IMGPROXY_LOCAL_FILESYSTEM_ROOT: /
|
IMGPROXY_LOCAL_FILESYSTEM_ROOT: /
|
||||||
IMGPROXY_USE_ETAG: 'true'
|
IMGPROXY_USE_ETAG: "true"
|
||||||
IMGPROXY_ENABLE_WEBP_DETECTION: 'true'
|
IMGPROXY_ENABLE_WEBP_DETECTION: "true"
|
||||||
|
|
||||||
# =====================================================
|
# =====================================================
|
||||||
# Supabase pg_meta (DB introspection for Studio)
|
# Supabase pg_meta (DB introspection for Studio)
|
||||||
@@ -221,6 +223,8 @@ services:
|
|||||||
depends_on:
|
depends_on:
|
||||||
supabase-db:
|
supabase-db:
|
||||||
condition: service_healthy
|
condition: service_healthy
|
||||||
|
supabase-db-migrate:
|
||||||
|
condition: service_completed_successfully
|
||||||
environment:
|
environment:
|
||||||
PG_META_PORT: 8080
|
PG_META_PORT: 8080
|
||||||
PG_META_DB_HOST: supabase-db
|
PG_META_DB_HOST: supabase-db
|
||||||
@@ -238,8 +242,6 @@ services:
|
|||||||
depends_on:
|
depends_on:
|
||||||
- supabase-meta
|
- supabase-meta
|
||||||
- supabase-kong
|
- supabase-kong
|
||||||
ports:
|
|
||||||
- '${STUDIO_PORT:-54323}:3000'
|
|
||||||
environment:
|
environment:
|
||||||
STUDIO_PG_META_URL: http://supabase-meta:8080
|
STUDIO_PG_META_URL: http://supabase-meta:8080
|
||||||
POSTGRES_PASSWORD: ${POSTGRES_PASSWORD}
|
POSTGRES_PASSWORD: ${POSTGRES_PASSWORD}
|
||||||
@@ -250,19 +252,14 @@ services:
|
|||||||
SUPABASE_ANON_KEY: ${SUPABASE_ANON_KEY}
|
SUPABASE_ANON_KEY: ${SUPABASE_ANON_KEY}
|
||||||
SUPABASE_SERVICE_KEY: ${SUPABASE_SERVICE_ROLE_KEY}
|
SUPABASE_SERVICE_KEY: ${SUPABASE_SERVICE_ROLE_KEY}
|
||||||
AUTH_JWT_SECRET: ${JWT_SECRET}
|
AUTH_JWT_SECRET: ${JWT_SECRET}
|
||||||
NEXT_PUBLIC_ENABLE_LOGS: 'true'
|
NEXT_PUBLIC_ENABLE_LOGS: "true"
|
||||||
NEXT_ANALYTICS_BACKEND_PROVIDER: postgres
|
NEXT_ANALYTICS_BACKEND_PROVIDER: postgres
|
||||||
healthcheck:
|
healthcheck:
|
||||||
test:
|
test: ["CMD", "node", "-e", "require('http').get('http://localhost:3000/api/profile', (r) => r.statusCode === 200 ? process.exit(0) : process.exit(1))"]
|
||||||
[
|
|
||||||
'CMD',
|
|
||||||
'node',
|
|
||||||
'-e',
|
|
||||||
"require('http').get('http://localhost:3000/api/profile', (r) => r.statusCode === 200 ? process.exit(0) : process.exit(1))",
|
|
||||||
]
|
|
||||||
interval: 10s
|
interval: 10s
|
||||||
timeout: 5s
|
timeout: 5s
|
||||||
retries: 5
|
retries: 5
|
||||||
|
start_period: 30s
|
||||||
|
|
||||||
# =====================================================
|
# =====================================================
|
||||||
# Supabase Inbucket (Email testing)
|
# Supabase Inbucket (Email testing)
|
||||||
@@ -270,8 +267,6 @@ services:
|
|||||||
supabase-inbucket:
|
supabase-inbucket:
|
||||||
image: inbucket/inbucket:3.0.4
|
image: inbucket/inbucket:3.0.4
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
ports:
|
|
||||||
- '${INBUCKET_PORT:-54324}:9000'
|
|
||||||
volumes:
|
volumes:
|
||||||
- supabase-inbucket-data:/storage
|
- supabase-inbucket-data:/storage
|
||||||
|
|
||||||
@@ -286,14 +281,10 @@ services:
|
|||||||
- supabase-rest
|
- supabase-rest
|
||||||
- supabase-storage
|
- supabase-storage
|
||||||
- supabase-realtime
|
- supabase-realtime
|
||||||
ports:
|
|
||||||
- '${KONG_HTTP_PORT:-8000}:8000'
|
|
||||||
- '${KONG_HTTPS_PORT:-8443}:8443'
|
|
||||||
- '${APP_PORT:-3000}:3000'
|
|
||||||
entrypoint: >
|
entrypoint: >
|
||||||
sh -c "sed 's|\$${SUPABASE_ANON_KEY}|'\"$$SUPABASE_ANON_KEY\"'|g; s|\$${SUPABASE_SERVICE_KEY}|'\"$$SUPABASE_SERVICE_KEY\"'|g' /var/lib/kong/kong.yml.tpl > /tmp/kong.yml && KONG_DECLARATIVE_CONFIG=/tmp/kong.yml /docker-entrypoint.sh kong docker-start"
|
sh -c "sed 's|\$${SUPABASE_ANON_KEY}|'\"$$SUPABASE_ANON_KEY\"'|g; s|\$${SUPABASE_SERVICE_KEY}|'\"$$SUPABASE_SERVICE_KEY\"'|g' /var/lib/kong/kong.yml.tpl > /tmp/kong.yml && KONG_DECLARATIVE_CONFIG=/tmp/kong.yml /docker-entrypoint.sh kong docker-start"
|
||||||
environment:
|
environment:
|
||||||
KONG_DATABASE: 'off'
|
KONG_DATABASE: "off"
|
||||||
KONG_DECLARATIVE_CONFIG: /var/lib/kong/kong.yml
|
KONG_DECLARATIVE_CONFIG: /var/lib/kong/kong.yml
|
||||||
KONG_DNS_ORDER: LAST,A,CNAME
|
KONG_DNS_ORDER: LAST,A,CNAME
|
||||||
KONG_PLUGINS: request-transformer,cors,key-auth,acl,basic-auth
|
KONG_PLUGINS: request-transformer,cors,key-auth,acl,basic-auth
|
||||||
@@ -304,7 +295,7 @@ services:
|
|||||||
volumes:
|
volumes:
|
||||||
- ./docker/kong.yml:/var/lib/kong/kong.yml.tpl:ro
|
- ./docker/kong.yml:/var/lib/kong/kong.yml.tpl:ro
|
||||||
healthcheck:
|
healthcheck:
|
||||||
test: ['CMD', 'kong', 'health']
|
test: ["CMD", "kong", "health"]
|
||||||
interval: 10s
|
interval: 10s
|
||||||
timeout: 5s
|
timeout: 5s
|
||||||
retries: 5
|
retries: 5
|
||||||
@@ -316,32 +307,33 @@ services:
|
|||||||
build:
|
build:
|
||||||
context: .
|
context: .
|
||||||
dockerfile: Dockerfile
|
dockerfile: Dockerfile
|
||||||
|
args:
|
||||||
|
NEXT_PUBLIC_SITE_URL: ${SITE_URL:-https://myeasycms.de}
|
||||||
|
# Browser-side Supabase URL — goes through external domain (Traefik → Kong)
|
||||||
|
NEXT_PUBLIC_SUPABASE_URL: ${API_EXTERNAL_URL:-http://localhost:8000}
|
||||||
|
NEXT_PUBLIC_SUPABASE_PUBLIC_KEY: ${SUPABASE_ANON_KEY}
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
depends_on:
|
depends_on:
|
||||||
supabase-kong:
|
supabase-kong:
|
||||||
condition: service_healthy
|
condition: service_healthy
|
||||||
supabase-db-migrate:
|
supabase-db-migrate:
|
||||||
condition: service_completed_successfully
|
condition: service_completed_successfully
|
||||||
# App shares Kong's network namespace — localhost:8000 inside the container
|
|
||||||
# reaches Kong directly. This keeps the same URL for browser AND server,
|
|
||||||
# so Supabase cookie names match without any code changes.
|
|
||||||
network_mode: 'service:supabase-kong'
|
|
||||||
environment:
|
environment:
|
||||||
NODE_ENV: production
|
NODE_ENV: production
|
||||||
NEXT_PUBLIC_SITE_URL: ${SITE_URL:-http://localhost:3000}
|
NEXT_PUBLIC_SITE_URL: ${SITE_URL:-http://localhost:3000}
|
||||||
NEXT_PUBLIC_SUPABASE_URL: http://localhost:8000
|
# NEXT_PUBLIC_ vars are baked at build time — runtime values only apply
|
||||||
NEXT_PUBLIC_SUPABASE_PUBLIC_KEY: ${SUPABASE_ANON_KEY}
|
# to middleware/API routes. Don't override with Docker-internal URLs.
|
||||||
SUPABASE_SECRET_KEY: ${SUPABASE_SERVICE_ROLE_KEY}
|
SUPABASE_SECRET_KEY: ${SUPABASE_SERVICE_ROLE_KEY}
|
||||||
SUPABASE_DB_WEBHOOK_SECRET: ${DB_WEBHOOK_SECRET:-webhooksecret}
|
SUPABASE_DB_WEBHOOK_SECRET: ${DB_WEBHOOK_SECRET:-webhooksecret}
|
||||||
EMAIL_SENDER: ${EMAIL_SENDER:-noreply@myeasycms.de}
|
EMAIL_SENDER: ${EMAIL_SENDER:-noreply@myeasycms.de}
|
||||||
NEXT_PUBLIC_PRODUCT_NAME: MyEasyCMS
|
NEXT_PUBLIC_PRODUCT_NAME: MyEasyCMS
|
||||||
NEXT_PUBLIC_DEFAULT_LOCALE: de
|
NEXT_PUBLIC_DEFAULT_LOCALE: de
|
||||||
NEXT_PUBLIC_ENABLE_THEME_TOGGLE: 'true'
|
NEXT_PUBLIC_ENABLE_THEME_TOGGLE: "true"
|
||||||
NEXT_PUBLIC_ENABLE_TEAM_ACCOUNTS: 'true'
|
NEXT_PUBLIC_ENABLE_TEAM_ACCOUNTS: "true"
|
||||||
NEXT_PUBLIC_ENABLE_TEAM_ACCOUNTS_CREATION: 'true'
|
NEXT_PUBLIC_ENABLE_TEAM_ACCOUNTS_CREATION: "true"
|
||||||
NEXT_PUBLIC_ENABLE_TEAM_ACCOUNTS_BILLING: 'false'
|
NEXT_PUBLIC_ENABLE_TEAM_ACCOUNTS_BILLING: "false"
|
||||||
NEXT_PUBLIC_ENABLE_PERSONAL_ACCOUNT_BILLING: 'false'
|
NEXT_PUBLIC_ENABLE_PERSONAL_ACCOUNT_BILLING: "false"
|
||||||
NEXT_PUBLIC_ENABLE_NOTIFICATIONS: 'true'
|
NEXT_PUBLIC_ENABLE_NOTIFICATIONS: "true"
|
||||||
|
|
||||||
volumes:
|
volumes:
|
||||||
supabase-db-data:
|
supabase-db-data:
|
||||||
|
|||||||
Reference in New Issue
Block a user