103 lines
3.1 KiB
YAML
103 lines
3.1 KiB
YAML
services:
|
|
api:
|
|
build:
|
|
context: ./backend
|
|
dockerfile: Dockerfile
|
|
ports:
|
|
- "8080:8000"
|
|
volumes:
|
|
- ./backend/src:/app/src:cached
|
|
- ./backend/alembic.ini:/app/alembic.ini:cached
|
|
- ./frontend/public:/frontend/public
|
|
environment:
|
|
- DEBUG=true
|
|
- DATABASE_URL=postgresql://postgres:postgres@db:5432/nuzlocke
|
|
# Auth - must match GoTrue's JWT secret
|
|
- SUPABASE_URL=http://gotrue:9999
|
|
- SUPABASE_JWT_SECRET=super-secret-jwt-token-with-at-least-32-characters-long
|
|
depends_on:
|
|
db:
|
|
condition: service_healthy
|
|
gotrue:
|
|
condition: service_healthy
|
|
restart: unless-stopped
|
|
|
|
frontend:
|
|
build:
|
|
context: ./frontend
|
|
dockerfile: Dockerfile
|
|
ports:
|
|
- "5173:5173"
|
|
volumes:
|
|
- ./frontend/src:/app/src:cached
|
|
- ./frontend/public:/app/public:cached
|
|
- ./frontend/index.html:/app/index.html:cached
|
|
environment:
|
|
- VITE_API_URL=http://localhost:8080
|
|
# Local GoTrue auth
|
|
- VITE_SUPABASE_URL=http://localhost:9999
|
|
- VITE_SUPABASE_ANON_KEY=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJyb2xlIjoiYW5vbiIsImlzcyI6InN1cGFiYXNlIiwiaWF0IjoxNzc0MDQwNjEzLCJleHAiOjIwODk0MDA2MTN9.EV6tRj7gLqoiT-l2vDFw_67myqRjwpcZTuRb3Xs1nr4
|
|
depends_on:
|
|
- api
|
|
- gotrue
|
|
restart: unless-stopped
|
|
|
|
db:
|
|
image: postgres:16-alpine
|
|
ports:
|
|
- "5432:5432"
|
|
environment:
|
|
- POSTGRES_USER=postgres
|
|
- POSTGRES_PASSWORD=postgres
|
|
- POSTGRES_DB=nuzlocke
|
|
volumes:
|
|
- postgres_data:/var/lib/postgresql/data
|
|
- ./docker/init:/docker-entrypoint-initdb.d:ro
|
|
healthcheck:
|
|
test: ["CMD-SHELL", "pg_isready -U postgres"]
|
|
interval: 5s
|
|
timeout: 5s
|
|
retries: 5
|
|
restart: unless-stopped
|
|
|
|
gotrue:
|
|
image: supabase/gotrue:v2.186.0
|
|
ports:
|
|
- "9999:9999"
|
|
environment:
|
|
# API settings
|
|
- GOTRUE_API_HOST=0.0.0.0
|
|
- GOTRUE_API_PORT=9999
|
|
- API_EXTERNAL_URL=http://localhost:9999
|
|
- GOTRUE_SITE_URL=http://localhost:5173
|
|
# Database
|
|
- GOTRUE_DB_DRIVER=postgres
|
|
- GOTRUE_DB_DATABASE_URL=postgres://postgres:postgres@db:5432/nuzlocke?sslmode=disable
|
|
# JWT - must match backend's SUPABASE_JWT_SECRET
|
|
- GOTRUE_JWT_SECRET=super-secret-jwt-token-with-at-least-32-characters-long
|
|
- GOTRUE_JWT_AUD=authenticated
|
|
- GOTRUE_JWT_EXP=3600
|
|
- GOTRUE_JWT_ADMIN_ROLES=service_role
|
|
# Email auth (auto-confirm for local dev)
|
|
- GOTRUE_EXTERNAL_EMAIL_ENABLED=true
|
|
- GOTRUE_MAILER_AUTOCONFIRM=true
|
|
- GOTRUE_MAILER_SECURE_EMAIL_CHANGE_ENABLED=false
|
|
# Disable external OAuth providers (not configured locally)
|
|
- GOTRUE_EXTERNAL_GOOGLE_ENABLED=false
|
|
- GOTRUE_EXTERNAL_DISCORD_ENABLED=false
|
|
# Disable phone auth
|
|
- GOTRUE_EXTERNAL_PHONE_ENABLED=false
|
|
- GOTRUE_SMS_AUTOCONFIRM=false
|
|
depends_on:
|
|
db:
|
|
condition: service_healthy
|
|
healthcheck:
|
|
test: ["CMD", "wget", "--no-verbose", "--tries=1", "--spider", "http://localhost:9999/health"]
|
|
interval: 5s
|
|
timeout: 5s
|
|
retries: 3
|
|
restart: unless-stopped
|
|
|
|
volumes:
|
|
postgres_data:
|