Nomploy Nomad Packs

← All packs

jellyseerr v0.1.0

Apps

Jellyseerr — a request-management and media-discovery app for Jellyfin/Plex/Emby: users browse and request movies and TV, and it integrates with Sonarr/Radarr to fulfil them. Deployed as a single host-networked Nomad service with a config volume. Pairs with the jellyfin pack.

nomad-pack run jellyseerr --registry nomploy
1 task http 5055 1 volume image fallenbagel/jellyseerr:latest
Variables 9
values.hcl

Save as values.hcl, edit, then run:

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

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

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

# The Jellyseerr container image. Pin a tag in production.
image = "fallenbagel/jellyseerr:latest"

# Host port for the Jellyseerr web UI (PORT).
port = 5055

# Log verbosity (LOG_LEVEL): debug, info, warn, error.
log_level = "info"

# Named volume for Jellyseerr config and its SQLite database (/app/config).
data_volume = "jellyseerr_config"

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

# The task resources.
resources = {
    cpu    = 500
    memory = 512
  }
NameTypeDefaultDescription
job_name string
"jellyseerr"
The name of the Nomad job.
namespace string
"default"
The Nomad namespace to deploy into.
datacenters list
["*"]
The datacenters to deploy to.
image string
"fallenbagel/jellyseerr:latest"
The Jellyseerr container image. Pin a tag in production.
port number
5055
Host port for the Jellyseerr web UI (PORT).
log_level string
"info"
Log verbosity (LOG_LEVEL): debug, info, warn, error.
data_volume string
"jellyseerr_config"
Named volume for Jellyseerr config and its SQLite database (/app/config).
constraints list
[]
Placement constraints. Pin to the node holding the volume. On a nomploy cluster: attribute = "$${meta.nomploy_control_plane}", operator = "=", value = "true".
resources object
{
    cpu    = 500
    memory = 512
  }
The task resources.
Readme

jellyseerr

Jellyseerr — request management and media discovery for Jellyfin/Plex/Emby. Users browse and request movies and TV; it integrates with Sonarr/Radarr to fulfil requests.

Single host-networked Nomad service with a config volume. Pairs with the jellyfin pack.

Deploy

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

Configure

Variable Default Description
port 5055 Web UI port (PORT).
log_level info LOG_LEVEL — debug/info/warn/error.
data_volume jellyseerr_config /app/config — settings + SQLite database.
image fallenbagel/jellyseerr:latest Container image. Pin a tag in production.
resources { cpu = 500, memory = 512 } Task resources.

Sign in with your media-server account on first visit and connect Jellyfin/Plex + Sonarr/Radarr. Pin the job to the node holding the volume with constraints.