unarr/DOCKERHUB.md
Deivid Soto e4f45332ca
Some checks failed
Release / release (push) Failing after 1s
Release / docker (push) Has been skipped
Release / virustotal (push) Failing after 0s
ci(docker): add Docker Hub description sync and DOCKERHUB.md
2026-03-31 10:24:14 +02:00

3.1 KiB

unarr

Powerful terminal tool for torrent search and management. Search 30+ sources, inspect quality, discover popular content, find streaming providers, and manage downloads — all from your terminal.

GitHub | Documentation | Releases

Quick Start

1. Setup (interactive wizard)

docker run -it --rm \
  -v ~/.config/unarr:/config \
  torrentclaw/unarr setup

2. Run the daemon

docker run -d --name unarr \
  --restart unless-stopped \
  --network host \
  --read-only --memory 512m \
  -v ~/.config/unarr:/config \
  -v ~/Media:/downloads \
  torrentclaw/unarr

Docker Compose

services:
  unarr:
    image: torrentclaw/unarr:latest
    container_name: unarr
    restart: unless-stopped
    user: "1000:1000"
    read_only: true
    tmpfs:
      - /tmp:size=64m,mode=1777
    volumes:
      - ./config:/config
      - ~/Media:/downloads
      - unarr-data:/data
    environment:
      - TZ=UTC
      # - UNARR_API_KEY=tc_your_key_here
    deploy:
      resources:
        limits:
          memory: 512M
          cpus: "2.0"
    network_mode: host

volumes:
  unarr-data:

Volumes

Path Purpose
/config Configuration file (config.toml)
/downloads Finished media downloads
/data Internal state: torrent metadata, cache

Environment Variables

Variable Description Default
TZ Timezone UTC
UNARR_API_KEY TorrentClaw API key from config
UNARR_API_URL API endpoint https://torrentclaw.com
UNARR_DOWNLOAD_DIR Download directory /downloads
UNARR_CONFIG_DIR Config directory /config
UNARR_COUNTRY Country code (ISO 3166) US

Networking

Host mode (recommended) gives full P2P performance with no port management:

network_mode: host

Bridge mode — more isolated, but requires explicit ports:

ports:
  - "6881-6889:6881-6889/tcp"
  - "6881-6889:6881-6889/udp"

Running Commands

Use docker exec for one-off commands while the daemon is running:

docker exec unarr unarr search "inception" --quality 1080p
docker exec unarr unarr popular --limit 10
docker exec unarr unarr status
docker exec unarr unarr doctor

Supported Architectures

Architecture Tag
linux/amd64 latest, 0.3, 0.3.5
linux/arm64 latest, 0.3, 0.3.5

Tags

Tag Description
latest Latest stable release
X.Y.Z Specific version (e.g. 0.3.5)
X.Y Latest patch for minor version (e.g. 0.3)

Image Details

  • Base image: Alpine 3.21
  • User: unarr (UID 1000, GID 1000)
  • Entrypoint: unarr start (daemon mode)
  • Read-only filesystem — only mounted volumes are writable
  • No root required — runs as non-root by default

License

MIT License — see LICENSE for details.