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.
Needs nomad-pack on PATH. The script only adds the nomploy registry and runs this pack.
Source ↗ Project ↗ ★ 3.2k ⚑ Report an issue
Save as values.hcl, edit, then run:
# 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
}
| Name | Type | Default | Description |
|---|---|---|---|
| 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. |
No variables match.
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.
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.
nomad-pack registry add nomploy https://github.com/Nomploy/nomad-packs
nomad-pack run wizarr --registry=nomploy
| 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.