Request: add Decypharr

Decypharr is a docker application that

  1. Sonarr/Radarr finds a torrent
  2. Decypharr sends it to your Debrid provider (Real Debrid, All Debrid, etc.)
  3. The Debrid service downloads it to their servers (fast, no local disk needed)
  4. Decypharr mounts the remote files as if they were on your computer
  5. Your media server streams directly from the cloud

This is the official dockerhub page:

and works with

  1. Real Debrid

  2. Torbox

  3. Debrid Link

  4. All Debrid

I attempted to use this as a docker image, but it didn’t work it correctly (ZimaOS was complaining about ports)

version: '3.7'
services:
  decypharr:
    image: cy01/blackhole:latest # or cy01/blackhole:beta
    container_name: decypharr
    ports:
      - "8282:8282" # qBittorrent
    user: "1000:1000"
    volumes:
      - /mnt/:/mnt
      - ./configs/:/app # config.json must be in this directory
    environment:
      - PUID=1000
      - PGID=1000
      - UMASK=002
    restart: unless-stopped

and there’s some configuration here:

{
“debrids”: [
{
“name”: “realdebrid”,
“api_key”: “your_api_key_here”,
“folder”: “/mnt/remote/realdebrid/all/”,
“use_webdav”: true
}
],
“qbittorrent”: {
“download_folder”: “/mnt/symlinks/”,
“categories”: [“sonarr”, “radarr”]
},
“use_auth”: false,
“log_level”: “info”,
“port”: “8282”
}

Who Is This For?

  • Media automation users running Sonarr/Radarr who want to avoid local downloads

  • Debrid subscribers looking to integrate Real Debrid/All Debrid with *Arr apps

  • Usenet users who want direct NNTP streaming without separate download clients

  • Hybrid setups combining both Debrid (for torrents) and Usenet (for releases)

  • Low-storage environments where storing full media files locally isn’t practical

This looks like it might be a great application for the rest of the BigBear list for CasaOS and ZimaOS. Can it be added in?