cc-dashboard/docker-compose.yml
Vadym Samoilenko 7b30880d44 Initial commit — CC Dashboard v1.0
Multi-tenant Claude Code monitoring dashboard.
FastAPI + PostgreSQL + Docker + SSE real-time updates.
Montserrat font, black/#FFC407 color scheme.
Apache reverse proxy config at /cc-dashboard/.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-03-26 12:54:47 +00:00

30 lines
658 B
YAML

services:
app:
build: .
ports:
- "8800:8800"
env_file: .env
depends_on:
db:
condition: service_healthy
restart: unless-stopped
volumes:
- ./src/static:/app/src/static:ro # hot-reload static files without rebuild
db:
image: postgres:16-alpine
volumes:
- pgdata:/var/lib/postgresql/data
environment:
POSTGRES_DB: cc_dashboard
POSTGRES_USER: cc_app
POSTGRES_PASSWORD: ${DB_PASSWORD}
healthcheck:
test: ["CMD-SHELL", "pg_isready -U cc_app -d cc_dashboard"]
interval: 5s
timeout: 3s
retries: 10
restart: unless-stopped
volumes:
pgdata: