changedetection.io — watch web pages for changes and get notified (price drops, restocks, content edits), with visual diffs, CSS/XPath filters, and 90+ notification targets. Deployed as a single host-networked Nomad service with a datastore volume.
Save as values.hcl, edit, then run:
# The name of the Nomad job.
job_name = "changedetection"
# The Nomad namespace to deploy into.
namespace = "default"
# The datacenters to deploy to.
datacenters = ["*"]
# The changedetection.io container image. Pin a tag in production.
image = "ghcr.io/dgtlmoon/changedetection.io:latest"
# Host port for the changedetection.io web UI (PORT).
port = 5001
# Public base URL used in notification links (BASE_URL). Empty = not set.
base_url = ""
# Named volume for all configuration and watch history (/datastore).
data_volume = "changedetection_data"
# 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
}
| Name | Type | Default | Description |
|---|---|---|---|
| job_name set me | string | "changedetection" | The name of the Nomad job. |
| namespace | string | "default" | The Nomad namespace to deploy into. |
| datacenters | list | ["*"] | The datacenters to deploy to. |
| image set me | string | "ghcr.io/dgtlmoon/changedetection.io:latest" | The changedetection.io container image. Pin a tag in production. |
| port | number | 5001 | Host port for the changedetection.io web UI (PORT). |
| base_url | string | "" | Public base URL used in notification links (BASE_URL). Empty = not set. |
| data_volume set me | string | "changedetection_data" | Named volume for all configuration and watch history (/datastore). |
| 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. |
No variables match.
changedetection.io — watch web pages for changes and get notified: price drops, restocks, content edits, and more, with visual diffs, CSS/XPath/JSON filters, and 90+ notification targets (via Apprise).
Single host-networked Nomad service with a /datastore volume.
nomad-pack registry add nomploy https://github.com/Nomploy/nomad-packs
nomad-pack run changedetection --registry=nomploy
| Variable | Default | Description |
|---|---|---|
port |
5001 |
Web UI port (PORT). |
base_url |
"" |
BASE_URL used in notification links. |
data_volume |
changedetection_data |
/datastore — config + watch history. |
image |
ghcr.io/dgtlmoon/changedetection.io:latest |
Image. Pin a tag in production. |
resources |
{ cpu = 500, memory = 512 } |
Task resources. |
Add a URL, set an interval, and you get diffs + notifications on change. Set an app password under
Settings if it's reachable beyond your LAN. For JavaScript-heavy pages, run a separate
Playwright/Chrome container and set PLAYWRIGHT_DRIVER_URL (plain HTTP fetching works without it).
Pin the job to the node holding the volume with constraints.