Ombi — a self-hosted request portal for your media server: users request movies and TV, Ombi handles approvals and hands off to Sonarr/Radarr. 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 ↗ ★ 4.1k ⚑ Report an issue
Save as values.hcl, edit, then run:
# The name of the Nomad job.
job_name = "ombi"
# The Nomad namespace to deploy into.
namespace = "default"
# The datacenters to deploy to.
datacenters = ["*"]
# The Ombi container image. Pin a tag in production.
image = "lscr.io/linuxserver/ombi:latest"
# Host port for the Ombi web UI.
port = 3579
# Named volume mounted at /config (settings + database).
data_volume = "ombi_data"
# User ID that owns the files (PUID).
puid = 1000
# Group ID that owns the files (PGID).
pgid = 1000
# Container timezone (TZ), e.g. Europe/Bratislava.
tz = "UTC"
# Optional subfolder path when served behind a reverse proxy (BASE_URL), e.g. "/ombi". Empty = served at the root.
base_url = ""
# 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 | "ombi" | 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/ombi:latest" | The Ombi container image. Pin a tag in production. |
| port | number | 3579 | Host port for the Ombi web UI. |
| data_volume | string | "ombi_data" | Named volume mounted at /config (settings + database). |
| puid | number | 1000 | User ID that owns the files (PUID). |
| pgid | number | 1000 | Group ID that owns the files (PGID). |
| tz | string | "UTC" | Container timezone (TZ), e.g. Europe/Bratislava. |
| base_url | string | "" | Optional subfolder path when served behind a reverse proxy (BASE_URL), e.g. "/ombi". Empty = served at the root. |
| 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:
ombi_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/ombi_data/_data
rclone (sync to S3/R2)
rclone sync /var/lib/docker/volumes/ombi_data/_data backup:<bucket>/ombi_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.
Ombi — a self-hosted media request portal. Your users browse and request movies and TV shows; Ombi handles approvals and hands the request off to Sonarr/Radarr for downloading, then notifies people when their media is ready. It plugs into Plex, Jellyfin and Emby for user accounts and library awareness.
Single host-networked Nomad service with a persistent config volume.
nomad-pack registry add nomploy https://github.com/Nomploy/nomad-packs
nomad-pack run ombi --registry=nomploy
| Variable | Default | Description |
|---|---|---|
port |
3579 |
Web UI port. Fixed inside the LinuxServer image — keep it reachable on 3579. |
image |
lscr.io/linuxserver/ombi:latest |
Container image. Pin a tag in production. |
data_volume |
ombi_data |
/config — settings and database. |
puid / pgid |
1000 / 1000 |
User/group that owns the files (PUID/PGID). |
tz |
UTC |
Container timezone (TZ). |
base_url |
"" |
Optional subfolder path behind a reverse proxy (BASE_URL), e.g. /ombi. |
resources |
{ cpu = 300, memory = 256 } |
Task resources. |
Pairs with sonarr, radarr, prowlarr and jellyfin. Pin the job to the node holding the volume with
constraints.