# CoreScope — simple deployment using pre-built image from GHCR # Usage: docker compose -f docker-compose.example.yml up -d # Docs: https://github.com/Kpa-clawbot/CoreScope/blob/master/DEPLOY.md services: corescope: image: ghcr.io/kpa-clawbot/corescope:latest ports: - "${HTTP_PORT:-80}:80" volumes: - ${DATA_DIR:-./data}:/app/data environment: - DISABLE_CADDY=${DISABLE_CADDY:-true} - DISABLE_MOSQUITTO=${DISABLE_MOSQUITTO:-false} restart: unless-stopped healthcheck: test: ["CMD", "wget", "-qO-", "http://localhost:3000/api/stats"] interval: 30s timeout: 5s retries: 3