Nomploy Nomad Packs

← All packs

radarr v0.1.0

Media

Radarr — a PVR for movies: monitor films, grab them from your indexers via a download client, then rename and organize them into your library automatically, with quality profiles and upgrades. Deployed as a host-networked Nomad service with config and media volumes.

nomad-pack run radarr --registry nomploy
…or one line (add registry + run)
curl -fsSL https://packs.nomploy.com/install.sh | sh -s -- radarr

Needs nomad-pack on PATH. The script only adds the nomploy registry and runs this pack.

1 task http 7878 2 volumes image lscr.io/linuxserver/radarr:latest tracks :latest image bumped today
Variables 12
values.hcl

Save as values.hcl, edit, then run:

nomad-pack run radarr -f values.hcl --registry nomploy
# The name of the Nomad job.
job_name = "radarr"

# The Nomad namespace to deploy into.
namespace = "default"

# The datacenters to deploy to.
datacenters = ["*"]

# The Radarr container image. Pin a tag in production.
image = "lscr.io/linuxserver/radarr:latest"

# Host port for the Radarr web UI.
port = 7878

# User ID the app runs as (PUID).
puid = 1000

# Group ID the app runs as (PGID).
pgid = 1000

# Container timezone (TZ), e.g. Europe/Bratislava.
tz = "UTC"

# Named volume for Radarr config (/config): the database and settings.
config_volume = "radarr_config"

# Named volume for media + downloads (/data): movie library and the download client's completed folder. Share this volume with your download client and media server for hardlinks/atomic moves.
data_volume = "media_data"

# Placement constraints. Pin to the node holding the volumes. On a nomploy cluster: attribute = "$${meta.nomploy_control_plane}", operator = "=", value = "true".
constraints = []

# Resources for the Radarr task.
resources = {
    cpu    = 500
    memory = 512
  }
NameTypeDefaultDescription
job_name string
"radarr"
The name of the Nomad job.
namespace string
"default"
The Nomad namespace to deploy into.
datacenters list
["*"]
The datacenters to deploy to.
image string
"lscr.io/linuxserver/radarr:latest"
The Radarr container image. Pin a tag in production.
port number
7878
Host port for the Radarr web UI.
puid number
1000
User ID the app runs as (PUID).
pgid number
1000
Group ID the app runs as (PGID).
tz string
"UTC"
Container timezone (TZ), e.g. Europe/Bratislava.
config_volume string
"radarr_config"
Named volume for Radarr config (/config): the database and settings.
data_volume string
"media_data"
Named volume for media + downloads (/data): movie library and the download client's completed folder. Share this volume with your download client and media server for hardlinks/atomic moves.
constraints list
[]
Placement constraints. Pin to the node holding the volumes. On a nomploy cluster: attribute = "$${meta.nomploy_control_plane}", operator = "=", value = "true".
resources object
{
    cpu    = 500
    memory = 512
  }
Resources for the Radarr task.
Back up this pack

This pack stores data in 2 Docker named volumes: radarr_configmedia_data

restic

# Run on the node hosting this pack. Point restic at your repo first:
#   export RESTIC_REPOSITORY="s3:https://<account>.r2.cloudflarestorage.com/<bucket>"
#   export RESTIC_PASSWORD="<repo-password>"
#   export AWS_ACCESS_KEY_ID=<key>  AWS_SECRET_ACCESS_KEY=<secret>
restic backup \
  /var/lib/docker/volumes/radarr_config/_data \
  /var/lib/docker/volumes/media_data/_data

rclone (sync to S3/R2)

rclone sync /var/lib/docker/volumes/radarr_config/_data backup:<bucket>/radarr_config
rclone sync /var/lib/docker/volumes/media_data/_data backup:<bucket>/media_data

Paths assume the default Docker volume location (/var/lib/docker/volumes). Restore by stopping the job, restoring files into the same volume, and re-running the pack.

Readme

radarr

Radarr — a PVR for movies. Monitor films, automatically grab them from your indexers through a download client, then rename and organize them into your library with quality profiles and upgrades.

Single host-networked Nomad service with config and media volumes.

Deploy

nomad-pack registry add nomploy https://github.com/Nomploy/nomad-packs
nomad-pack run radarr --registry=nomploy

Configure

Variable Default Description
port 7878 Web UI port.
config_volume radarr_config /config — database and settings.
data_volume media_data /data — movie library + downloads. Share this with your download client and media server.
puid / pgid 1000 / 1000 User/group (PUID/PGID).
tz UTC Container timezone (TZ).
image lscr.io/linuxserver/radarr:latest Container image. Pin a tag in production.
resources { cpu = 500, memory = 512 } Task resources.

Connect the prowlarr pack for indexers and the qbittorrent pack as the download client, and set your root folder to /data/movies. Keep Radarr, the download client, and your media server (jellyfin) on the same /data volume so imports use fast hardlinks/atomic moves. Serves plain HTTP — front it with a reverse proxy for TLS. Pin the job to the node holding the volumes with constraints.