changes to deploy dev server

This commit is contained in:
2025-07-09 15:33:45 -05:00
parent 04f2a48727
commit 60faa0a123
4 changed files with 134 additions and 123 deletions

View File

@@ -1,15 +1,16 @@
networks:
supabase-network:
name: supabase-network
techtracker-dev:
name: techtracker-dev
driver: bridge
ipam:
config:
- subnet: 172.20.0.0/16
- subnet: 172.21.0.0/16
services:
minio:
image: minio/minio
networks: [supabase-network]
container_name: ttsbd-supabase-minio
networks: [techtracker-dev]
ports:
- '9000:9000'
- '9001:9001'
@@ -27,7 +28,8 @@ services:
minio-createbucket:
image: minio/mc
networks: [supabase-network]
container_name: ttsbd-supabase-minio-createbucket
networks: [techtracker-dev]
depends_on:
minio:
condition: service_healthy
@@ -39,9 +41,9 @@ services:
"
storage:
container_name: supabase-storage
container_name: ttsbd-supabase-storage
image: supabase/storage-api:v1.11.13
networks: [supabase-network]
networks: [techtracker-dev]
depends_on:
db:
# Disable this if you are using an external Postgres database
@@ -91,9 +93,9 @@ services:
- ./volumes/storage:/var/lib/storage:z
imgproxy:
container_name: supabase-imgproxy
container_name: ttsbd-supabase-imgproxy
image: darthsim/imgproxy:v3.8.0
networks: [supabase-network]
networks: [techtracker-dev]
healthcheck:
test: [ "CMD", "imgproxy", "health" ]
timeout: 5s