# Local run without Cloudflare: http://localhost:3000 # docker compose -f docker-compose.local.yml up --build services: app: build: . image: courtside:latest restart: unless-stopped ports: - "3000:3000" environment: - PORT=3000 - DB_PATH=/data/courtside.sqlite - ADMIN_PASSWORD=${ADMIN_PASSWORD:-changeme} - SESSION_SECRET=${SESSION_SECRET:-} volumes: - courtside-data:/data volumes: courtside-data: