Find a file
soulis-1256 bd126b704e
Fix quality profile setup and split Recyclarr into include packs
Always sync HD/UHD (and Sonarr WEB) as include packs, name them with
an assemblrr prefix, soften blocking CF scores, zero quality minSize,
relax minimumSeeders, and update Seerr on reconfigure. Document TRaSH
guide drift and tighten comments and uninstall messaging.
2026-08-05 16:12:47 +03:00
.github Initial commit 2026-08-04 23:42:34 +03:00
bin Fix quality profile setup and split Recyclarr into include packs 2026-08-05 16:12:47 +03:00
compose Initial commit 2026-08-04 23:42:34 +03:00
docs Document removal of root-owned install trees in uninstall.md 2026-08-05 14:19:42 +03:00
lib Fix quality profile setup and split Recyclarr into include packs 2026-08-05 16:12:47 +03:00
platform Fix quality profile setup and split Recyclarr into include packs 2026-08-05 16:12:47 +03:00
scripts Add unit/integration tests under tests/ and clean up related docs 2026-08-05 13:43:45 +03:00
templates/recyclarr Fix quality profile setup and split Recyclarr into include packs 2026-08-05 16:12:47 +03:00
tests Fix quality profile setup and split Recyclarr into include packs 2026-08-05 16:12:47 +03:00
.env.example Use .env.example as the env template and cover it with tests 2026-08-05 14:01:04 +03:00
.gitignore Initial commit 2026-08-04 23:42:34 +03:00
branding.conf Use lowercase assemblrr as the product name 2026-08-05 14:05:14 +03:00
LICENSE Initial commit 2026-08-04 23:42:34 +03:00
Makefile Use .env.example as the env template and cover it with tests 2026-08-05 14:01:04 +03:00
README.md Fix quality profile setup and split Recyclarr into include packs 2026-08-05 16:12:47 +03:00

assemblrr

Note

Developers note — vision & roadmap
assemblrr is infrastructure for self-hosted media automation (install, wire services, operate the stack). It does not provide media, indexers, or content. What you request, download, and host is entirely your responsibility and must comply with the laws that apply to you.

Future directions and ideas shall be discussed with the community here

Self-hosted media automation, set up in minutes, not a weekend.

Features & Philosophy

  • 100% Docker Native
  • Fail-Safe Backups: Built-in CLI backup & restore features snapshot your configuration before merging to prevent data corruption.
  • Secure Networking: First-class Gluetun VPN integration. All traffic from download clients strictly routes through the VPN context.

The Stack

Core (included, auto-configured)

  • Media Server: Jellyfin (recommended), Emby, or Plex
  • Download Client: qBittorrent
  • Managers: Sonarr, Radarr
  • Indexing: Prowlarr
  • Request Management: Seerr
  • Quality Profiles: Recyclarr
  • Management: Portainer

Optional (via compose/custom.yaml)

  • Music Manager: Lidarr
  • Usenet Downloader: SABnzbd
  • Subtitles: Bazarr
  • Update Notifications: Watchtower

Deployed only — not auto-configured. Set them up in each services UI.

Installation

Linux / WSL2

bash / zsh:

bash <(curl -fsSL https://raw.githubusercontent.com/soulis-1256/assemblrr/main/platform/linux/bootstrap.sh)

fish (no <(...) process substitution — use psub instead):

bash (curl -fsSL https://raw.githubusercontent.com/soulis-1256/assemblrr/main/platform/linux/bootstrap.sh | psub)

Windows (PowerShell)

Ensure Docker Desktop is running before execution.

irm https://raw.githubusercontent.com/soulis-1256/assemblrr/main/platform/windows/bootstrap.ps1 | iex

Usage (CLI)

After install, the CLI is on your PATH as assemblrr. Run assemblrr <command>:

Command Description
start Start all services (with VPN verification)
stop Stop all services
restart Restart all services
status Show container status
health Show healthcheck status of all services
logs [service] Follow logs (all services, or one)
config Show current configuration
configure Auto-configure APIs (Radarr, Prowlarr) using jq
reconfigure Re-run the setup wizard
backup /target/dir Snapshot configuration
restore /backup.tar.gz Restore from a backup archive
update-containers Pull latest images and restart (offers a backup first)
update-cli Update the CLI to the latest version
check-vpn Poll VPN health
uninstall Remove everything (asks before deleting data)

Uninstall

assemblrr uninstall stops and removes the containers, network, CLI, and installation directory. Your media is kept unless you explicitly delete it. If the CLI is missing or the installation is broken, you can still run the bundled CLI directly (bash ~/assemblrr/cli.sh uninstall) or remove everything by hand.

See docs/uninstall.md for the complete removal guide, including a full inventory of what an installation creates.

Configuration & Architecture

Configuration lives in your installation directory (default: ~/assemblrr).

  • .env: Generated at install from .env.example (all variables are documented there). Credentials live under secrets/, not in .env.
  • compose/base.yaml: Core services.
  • compose/vpn.yaml / compose/direct-access.yaml: Networking overlays.
  • compose/custom.yaml: Optional services (from the example under compose/examples/).
  • config/: Persistent service data.

Quality Profiles & TRaSH Guides

assemblrr uses Recyclarr to sync TRaSH Guides quality profiles and custom formats into Radarr and Sonarr.

Both resolutions are always installed as assemblrr-named profiles (movies: assemblrr HD Bluray + WEB + assemblrr UHD Bluray + WEB; TV: assemblrr WEB-1080p + assemblrr WEB-2160p). The setup question only picks Seerrs default for movie requests — the other profile stays available in the quality dropdown. Stock Radarr/Sonarr profiles (Any, HD-1080p, …) also appear there; that is normal.

assemblrr deliberately does not apply TRaSH quality min-size limits (they can reject smaller legitimate releases), and softens hard-block custom formats (LQ / x265 / 3D scores set to 0). Tier preferences from the guides still apply when better releases exist.

Those guides change over time. Trash IDs, profile names, and Recyclarr YAML schema can all break without warning. When that happens you may see:

  • Recyclarr sync errors (Invalid quality profile trash_id, YAML error, etc.)
  • Seerr defaulting to Any instead of your chosen quality
  • Missing Recyclarr profiles in Radarr/Sonarr (only stock profiles like Any / HD-1080p)

That is expected community-guide churn — not a VPN or Docker failure.

What to do when it breaks

  1. Check Recyclarr: docker logs recyclarr and/or docker exec recyclarr recyclarr sync
  2. List current guide IDs from inside the container:
    docker exec recyclarr recyclarr list quality-profiles radarr
    docker exec recyclarr recyclarr list quality-profiles sonarr
    
  3. Update the relevant pack under templates/recyclarr/includes/ (or the live copies in your installs config/recyclarr/includes/) with the new trash IDs. Root config is templates/recyclarr/recyclarr.yml.
  4. Re-run sync, then refresh Seerr: assemblrr configure

We try to keep templates current, but plan on occasional manual updates if you rely on TRaSH-backed profiles long-term. Official docs: Recyclarr · TRaSH Guides.

Development

Windows (powershell)

git clone https://github.com/soulis-1256/assemblrr.git
cd assemblrr
.\platform\windows\bootstrap-dev.ps1 -Full        # Full setup (copies files to WSL2 and runs setup.sh)
.\platform\windows\bootstrap-dev.ps1 -Full -Clean # Uninstalls the existing installation, then does a full setup
.\platform\windows\bootstrap-dev.ps1 -Update      # Sync changed files to WSL2 (no setup re-run, useful for cli changes)

Linux/WSL2

git clone https://github.com/soulis-1256/assemblrr.git
cd assemblrr
bash bin/setup.sh

Tests

make test                 # unit + compose config + shellcheck (if installed)
make test-unit            # pure shell unit tests (no Docker)
make test-compose         # docker compose config validation
make test-integration     # live qBittorrent + vpn-watchdog (opt-in)

Live integration mutates a running stack — requires ASSEMBLRR_ALLOW_LIVE_TEST=1. See tests/README.md.

Acknowledgments

Originally inspired by YAMS (rogsme/yams); assemblrr has since been rewritten and expanded into its own project.

License

GNU General Public License v3.0