hoops-lab / docker-compose.yml
srisoluti's picture
Phase 0: project scaffold, nba_api client, HF Spaces setup
8273381
Raw
History Blame Contribute Delete
446 Bytes
# Advanced stack (Phase 4+) ONLY — the MVP runs fully local on DuckDB and
# does NOT need Docker. Start with: docker compose up -d
services:
postgres:
image: postgres:16
environment:
POSTGRES_USER: hoops
POSTGRES_PASSWORD: hoops
POSTGRES_DB: hoops_lab
ports:
- "5432:5432"
volumes:
- pgdata:/var/lib/postgresql/data
redis:
image: redis:7
ports:
- "6379:6379"
volumes:
pgdata: