brackt/docker-compose.yml
Chris Parsons 7970cb6a9c feat: add FIFA World Cup 48-team bracket template with group stage and projected scoring
- Add FIFA_48 bracket template with 12 groups of 4, knockout stage of 32
- Add tournament groups schema, model, and GroupStageDisplay component
- Add projected/expected value scoring to standings and team breakdowns
- Add docker-compose for local PostgreSQL development
- Move DRAFT_ORDER_IMPLEMENTATION.md to plans directory

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-02-14 22:30:12 -08:00

34 lines
703 B
YAML

services:
db:
image: postgres:16-alpine
container_name: brackt-db
environment:
POSTGRES_USER: postgres
POSTGRES_PASSWORD: postgres
POSTGRES_DB: brackt
ports:
- "5439:5432"
volumes:
- postgres_data:/var/lib/postgresql/data
healthcheck:
test: ["CMD-SHELL", "pg_isready -U postgres"]
interval: 5s
timeout: 5s
retries: 5
app:
build: .
container_name: brackt-app
ports:
- "3000:3000"
environment:
DATABASE_URL: postgres://postgres:postgres@db:5432/brackt
NODE_ENV: production
depends_on:
db:
condition: service_healthy
profiles:
- full
volumes:
postgres_data: