--- services: #captcha byparr: image: ghcr.io/thephaseless/byparr:latest container_name: byparr restart: unless-stopped environment: - LOG_LEVEL=INFO #init: true #build: # context: . # dockerfile: Dockerfile # Uncomment below to use byparr outside of internal network ports: - "8191:8191" #Helps removing stall downloads and malware #https://cleanuparr.github.io/Cleanuparr/docs/installation/detailed/#docker-compose cleanuparr: image: ghcr.io/cleanuparr/cleanuparr:latest container_name: cleanuparr restart: unless-stopped ports: - "11011:11011" volumes: - /opt/cleanuparr/config:/config # Mount your downloads directory if needed #- /path/to/downloads:/downloads environment: - PORT=11011 - BASE_PATH= - PUID=0 - PGID=0 - UMASK=022 - TZ=America/Chicago # Health check configuration healthcheck: test: ["CMD", "curl", "-f", "http://localhost:11011/health"] interval: 30s # Check every 30 seconds timeout: 10s # Allow up to 10 seconds for response start_period: 30s # Wait 30 seconds before first check retries: 3 # Mark unhealthy after 3 consecutive failures #autobrr