Installation
Docker (Recommended)
Section titled “Docker (Recommended)”Docker Compose
Section titled “Docker Compose”Create a docker-compose.yml:
services: decypharr: image: cy01/blackhole:latest container_name: decypharr ports: - "8282:8282" volumes: - /mnt/:/mnt:rshared - ./configs/:/app # config.json must be in this directory restart: unless-stopped devices: - /dev/fuse:/dev/fuse:rwm cap_add: - SYS_ADMIN security_opt: - apparmor:unconfinedRun:
docker compose up -dAccess at http://localhost:8282
Docker Run
Section titled “Docker Run”docker run -d \ --name=decypharr \ -p 8282:8282 \ -v ./config:/app \ -v ./downloads:/downloads \ -v ./cache:/cache \ -e PUID=1000 \ -e PGID=1000 \ --restart unless-stopped \ --device /dev/fuse:/dev/fuse:rwm \ --cap-add SYS_ADMIN \ --security-opt apparmor:unconfined \ sirrobot01/decypharr:latestBinary
Section titled “Binary”Download the latest release from GitHub Releases.
# Extracttar -xzf decypharr_linux_amd64.tar.gz
# Run./decypharr --config /path/to/Next Steps
Section titled “Next Steps”After installation, access the web UI. You’ll be redirected to the Setup Wizard for first-run configuration.