Autobrr monitors IRC announce channels and RSS feeds for new releases, grabbing them the instant they're available. It can send grabs directly to qBittorrent or route them through Sonarr/Radarr for full automation.
autobrr:
image: ghcr.io/autobrr/autobrr:latest
container_name: autobrr
environment:
- TZ=${TZ}
user: "${PUID}:${PGID}"
volumes:
- ${CONFIG_DIR}/autobrr:/config
ports:
- "7474:7474"
restart: unless-stoppedNote: Autobrr uses user: instead of PUID/PGID environment variables.
- Open
http://your-server-ip:7474 - Create an account (first-run setup wizard)
- Log in
Settings → Download Clients → Add
| Field | Value |
|---|---|
| Type | qBittorrent |
| Host | qbittorrent |
| Port | 8080 |
| Username | your qBit username |
| Password | your qBit password |
Settings → Indexers → Add
Select your tracker from the list. You'll need:
- IRC server, port, and channel (usually provided by the tracker)
- Your IRC nick and NickServ password (or invite command)
- Announce key / passkey from the tracker
Autobrr supports many trackers out of the box — check the supported indexers list.
Filters define what to grab. Go to Filters → Add.
Example: grab all 1080p BluRay movie releases:
| Field | Value |
|---|---|
| Name | 1080p BluRay Movies |
| Resolution | 1080p |
| Source | BluRay |
| Match Categories | (tracker-specific) |
Each filter needs an action — what to do when a match is found:
- Send to qBittorrent — direct grab, bypasses the *arrs
- Send to Sonarr/Radarr — pushes to the *arr, which handles import and organization (recommended)
For Sonarr/Radarr actions:
| Field | Value |
|---|---|
| Type | Sonarr / Radarr |
| Host | http://sonarr:8989 or http://radarr:7878 |
| API Key | the app's API key |
- Race for fresh uploads — grab releases within seconds of being announced
- Hard-to-find content — set filters for specific titles, groups, or quality
- Freeleech — grab freeleech-tagged releases automatically on private trackers
| Feature | Prowlarr | Autobrr |
|---|---|---|
| Search type | On-demand (API search) | Real-time (IRC announce) |
| Speed | Minutes | Seconds |
| Use case | General automation | Racing, niche grabs |
| Complexity | Low | Medium |
They complement each other — Prowlarr handles regular searches, Autobrr handles instant grabs.
IRC not connecting: Check your IRC credentials. Some trackers require you to register your nick before connecting. Check the Autobrr logs: docker logs autobrr.
Filter not matching: Use the "Test" feature on your filter to check against recent announces. Make sure your match criteria aren't too restrictive.
- Unpackerr — auto-extract archived downloads
- Back to main README