Nomploy Nomad Packs

← All packs

wizarr v0.1.0

Media

Wizarr — a user-invitation and onboarding portal for Jellyfin, Plex and Emby: share invite links, auto-create accounts and guide new users through setup. Deployed as a single host-networked Nomad service.

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

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

1 task http 5690 1 volume image ghcr.io/wizarrrr/wizarr:latest tracks :latest image bumped today
Variables 9
values.hcl

Save as values.hcl, edit, then run:

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

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

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

# The Wizarr container image. Pin a tag in production.
image = "ghcr.io/wizarrrr/wizarr:latest"

# Host port for the Wizarr web UI.
port = 5690

# Named volume mounted at /data/database (settings and the SQLite database).
data_volume = "wizarr_data"

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

# Placement constraints. On a nomploy cluster: attribute = "$${meta.nomploy_control_plane}", operator = "=", value = "true".
constraints = []

# The task resources.
resources = {
    cpu    = 300
    memory = 256
  }
NameTypeDefaultDescription
job_name string
"wizarr"
The name of the Nomad job.
namespace string
"default"
The Nomad namespace to deploy into.
datacenters list
["*"]
The datacenters to deploy to.
image string
"ghcr.io/wizarrrr/wizarr:latest"
The Wizarr container image. Pin a tag in production.
port number
5690
Host port for the Wizarr web UI.
data_volume string
"wizarr_data"
Named volume mounted at /data/database (settings and the SQLite database).
tz string
"UTC"
Container timezone (TZ), e.g. Europe/Bratislava.
constraints list
[]
Placement constraints. On a nomploy cluster: attribute = "$${meta.nomploy_control_plane}", operator = "=", value = "true".
resources object
{
    cpu    = 300
    memory = 256
  }
The task resources.
Back up this pack

This pack stores data in one Docker named volume: wizarr_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/wizarr_data/_data

rclone (sync to S3/R2)

rclone sync /var/lib/docker/volumes/wizarr_data/_data backup:<bucket>/wizarr_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

wizarr

Wizarr — a user invitation and onboarding portal for Jellyfin, Plex and Emby. Instead of manually creating accounts, you share a Wizarr invite link: new users sign up, Wizarr provisions their media-server account (with the right libraries), and walks them through installing an app and requesting media.

Single host-networked Nomad service with a persistent database volume.

Deploy

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

Configure

Variable Default Description
port 5690 Web UI port.
image ghcr.io/wizarrrr/wizarr:latest Container image. Pin a tag in production.
data_volume wizarr_data /data/database — settings and the SQLite database.
tz UTC Container timezone (TZ).
resources { cpu = 300, memory = 256 } Task resources.

On first launch, complete the setup wizard: connect your media server (jellyfin / Plex / Emby) and create your admin account. Pairs naturally with jellyseerr / ombi for requests. Pin the job to the node holding the volume with constraints.