README
¶
docker-renovate-scheduler
Run Renovate as a resident, always-on container — driven by a built-in interval scheduler or an external trigger — instead of a one-shot job. A tiny Go wrapper around the official renovate/renovate image; structured logs, no metrics, no open ports.
Why this exists
The Renovate CLI is designed to run once and exit; the usual self-hosted patterns schedule it with cron or a Kubernetes CronJob. If your stack schedules every other workload with always-on containers and external triggers (Ofelia, a webhook, a central orchestrator), an ephemeral docker run per cycle is the odd one out. This image keeps Renovate resident and lets you drive it the same way as everything else, while reusing the upstream image's carefully-assembled runtime.
It deliberately has no built-in HTTP/webhook server — triggering is delegated to whatever already schedules your containers (docker exec, Ofelia, a webhook-driven action on a release, …).
Not distroless — on purpose
Unlike a single-static-binary tool, Renovate is a Node.js application that shells out to git and, for lockfile maintenance, to language package managers; its default binarySource=install installs those toolchains at runtime via containerbase. There is no static, dependency-free form to drop on scratch. So this image builds on the official renovate/renovate image (the "full" image the Renovate docs recommend when runtime tool installation is needed) and adds only the scheduler binary on top. The Go wrapper itself is a static, CGO-free binary.
One deliberate trim: the bundled docker CLI is removed from the image. Renovate invokes it only under binarySource=docker (running each tool in a sidecar container); this scheduler runs the default binarySource=install, so the CLI is never used. Dropping the unused ~42 MB binary cuts the attack surface and clears the Go-stdlib CVEs that image scanners report against it. As a result, binarySource=docker is not supported by this image; it is deprecated upstream regardless, so binarySource=install (the default here) is the path forward.
What it does
- Runs
renovateon a built-in interval (SCHED_INTERVAL=6h) — one run at startup for immediate freshness, then every interval — or stays idle and runs on an external trigger (SCHED_INTERVAL=off+docker exec … run). - Routes every Renovate invocation through the image's own entrypoint so the containerbase environment (
binarySource=install) is set up — even for runs triggered by a baredocker exec, which bypasses the imageENTRYPOINT. - Overlap-guards runs with an advisory
flock, so a scheduled run and a manually/externally triggered run never execute two Renovate processes against the same base directory at once. A trigger that arrives while a run is in flight isn't dropped — it queues a single coalesced rerun ("max 1 wait") that fires as soon as the current run finishes. - File-marker healthcheck via
github.com/cplieger/health: unhealthy when the last run failed, recovers on the next clean run. - Streams Renovate's own structured logs straight through to stdout/stderr (set
LOG_FORMAT=json) for collection by Alloy/Promtail/Loki. The scheduler neither captures nor parses Renovate's output; it emits only its own lifecycle lines, which carry UTC timestamps regardless of the container'sTZ.
Configuration
Renovate reads its entire configuration from its own RENOVATE_* environment variables, a config.js, or a config file (see config.js.example) — this scheduler does not wrap or re-expose any of it. The scheduler itself is configured by the variables below, all kept outside the RENOVATE_* namespace so Renovate cannot mistake them for config options:
| Variable | Description | Default |
|---|---|---|
SCHED_INTERVAL |
Built-in scheduler cadence as a Go duration (6h, 1h, 30m). First run at startup, then every interval. Set to off (aliases disabled, 0) to disable the built-in scheduler and trigger runs externally — see Scheduling modes. Falls back to 6h on an unset or unparseable (non-sentinel) value. |
6h |
SCHED_TIMEOUT |
Whole-run timeout for a single renovate invocation, as a Go duration. This is the outer bound on the process; Renovate's own RENOVATE_EXECUTION_TIMEOUT is a separate per-child limit. |
1h |
LOG_LEVEL |
debug, info, warn, or error (honoured by both the scheduler and Renovate). |
info |
Everything else is Renovate's own configuration. The essentials for a self-hosted bot:
RENOVATE_TOKEN— platform token for the bot account (andRENOVATE_GITHUB_COM_TOKENfor changelog fetching when running against non-github.com platforms or to avoid rate limits).RENOVATE_AUTODISCOVER=trueorRENOVATE_REPOSITORIES— which repositories to process.RENOVATE_PERSIST_REPO_DATA=trueandRENOVATE_REPOSITORY_CACHE=enabled— recommended for a resident container so runsgit fetchinstead ofgit cloneand reuse extraction/datasource caches across runs (the payoff of staying always-on; persist/data).
Running as a non-default user (rootless)
Recommended: don't override the user. Run the image as-is; it works with no extra configuration.
By default the container runs as the base image's non-root user, UID 12021, which has a writable home and a working containerbase: Renovate installs toolchains on demand and regenerates lockfiles out of the box.
If you override the user (Compose user:) to match host volume ownership (e.g. a 1000:1000 rootless UID), that UID has no home directory (HOME=/), so every tool cache that defaults under $HOME becomes unwritable and two things break silently:
- containerbase's on-demand tool installs fail (
binarySource=installcan't write/opt/containerbase); and - lockfile/artifact regeneration fails:
go mod tidycan't refreshgo.sum,npm installcan't refreshpackage-lock.json. The dependency PR is still raised, but manifest-only (go.mod/package.json), and then fails the consuming repo's CI (missing go.sum entry, ornpm cireporting the lock out of sync).
The scheduler logs a startup warning when it detects this state (a non-default UID with an unwritable home and no cache redirection), so the misconfiguration surfaces immediately instead of as a broken PR days later.
If you must run as a custom UID, use the tools baked into the image and route every cache to a writable, mounted volume:
user: "1000:1000" # your rootless UID
environment:
RENOVATE_BINARY_SOURCE: "global" # use the baked tools; skip the on-demand installer
GOPATH: "/data/go"
GOCACHE: "/data/.cache/go-build" # Go
npm_config_cache: "/data/.npm" # Node / npm
# Renovate forwards only an allowlist to artifact subprocesses
# (GOPATH yes; GOCACHE / npm_config_cache no), so forward them explicitly:
RENOVATE_CUSTOM_ENV_VARIABLES: '{"GOPATH":"/data/go","GOCACHE":"/data/.cache/go-build","npm_config_cache":"/data/.npm"}'
volumes:
- ./data:/data # chown ./data to your UID on the host
Add one cache entry per language manager Renovate updates (the pattern extends to pip, cargo, etc.), and chown the /data volume to your UID. If that is more than you want to manage, run as the default 12021.
Scheduling modes
Built-in scheduler (default)
Set SCHED_INTERVAL to a Go duration. The container runs once at startup and then every interval. Zero external dependencies.
services:
renovate:
image: ghcr.io/cplieger/docker-renovate-scheduler:latest
container_name: renovate
restart: unless-stopped
environment:
SCHED_INTERVAL: "6h"
LOG_LEVEL: "info"
LOG_FORMAT: "json"
RENOVATE_PLATFORM: "github"
RENOVATE_AUTODISCOVER: "true"
RENOVATE_TOKEN: "<bot-token>"
RENOVATE_PERSIST_REPO_DATA: "true"
RENOVATE_REPOSITORY_CACHE: "enabled"
volumes:
- ./data:/data # RENOVATE_BASE_DIR — persist clones + caches
External scheduler
Set SCHED_INTERVAL=off. The container stays running but idle; trigger each run out-of-band:
docker exec renovate docker-renovate-scheduler run # all configured repos
docker exec renovate docker-renovate-scheduler run owner/repo # just one (positional args go straight to Renovate)
The run exits 0 on success, 1 on failure, and updates the same health marker the long-running container reports.
Log visibility in external mode. A triggered
runis a separatedocker execprocess, so its output -- the scheduler's ownrenovate run starting/completelifecycle lines and Renovate's streamed logs -- goes to thedocker execcaller's stream (the Ofelia job log, the webhook action's output), not the container's main stdout. A pipeline scraping the container's stdout (Docker log driver -> Alloy/Promtail/Loki) sees only the daemon's boot/shutdown lines for an external-mode container, never per-run outcomes -- so read triggered-run results from the trigger itself. The stdout-collection note above applies to built-in mode, where the run is PID 1.
Example with Ofelia:
environment:
SCHED_INTERVAL: "off" # disable the built-in loop; Ofelia drives it
labels:
ofelia.enabled: "true"
ofelia.job-exec.renovate-run.schedule: "@every 6h"
ofelia.job-exec.renovate-run.command: "docker-renovate-scheduler run"
ofelia.job-exec.renovate-run.user: "12021" # MUST match the container's user — see below
ofelia.job-exec.renovate-run.no-overlap: "true"
Run the trigger as the same user the container runs as. The run-lock and health marker live in
/tmp, owned by whoever the container runs as — the image's default12021, or whatever you set via Composeuser:. A baredocker execinherits the container's user automatically, but Ofelia'sjob-execdoes not: it runs as the image's default user unless you setuser:explicitly. If the trigger's user differs from the container's, every run fails withcannot acquire run lock … permission denied. So set Ofelia'suser:to match your Composeuser:— e.g."1000"if you run the container rootless as1000:1000, or leave the default12021if you don't override the user.
The docker exec trigger is clean — no entrypoint prefix needed. The scheduler routes Renovate through the image entrypoint internally, so a bare exec still gets the full containerbase environment.
Overlap & coalescing
A trigger that races an in-flight run does not run twice and is not lost. The loser sets a single-slot "rerun pending" flag — any number of overlapping triggers collapse into one ("max 1 wait") — and when the active run finishes it immediately reruns once to pick up the queued work, then settles. This matters for release-driven triggering (e.g. a burst of release webhooks firing an external action): without coalescing, a trigger that lands mid-run would otherwise wait for the next interval. Reruns are bounded by a small internal cap so a relentless trigger source can't pin the lock, and a failed run stops the loop rather than hammering a broken Renovate. Ofelia's no-overlap still prevents redundant triggers from queuing on the scheduler side.
Graceful shutdown
On SIGTERM/SIGINT (a docker stop, or a redeploy that recreates the container) the scheduler does not abandon an in-flight run. It waits for the current run to finish before exiting:
- Built-in mode waits for the in-process run (startup or interval) to complete.
- External mode waits for an in-flight
run— a separatedocker execprocess — to release the shared overlap lock. A redeploy that lands on an in-flight triggered run would otherwiseSIGKILLit (exit 137) and report the scheduled job as failed.
Docker terminates the container once the process exits or stop_grace_period elapses, whichever comes first. So set stop_grace_period long enough to cover your slowest run -- a cold first run (empty ./data + on-demand tool installs) can take as long as the 10m healthcheck start_period; otherwise Docker SIGKILLs the run before the drain completes:
services:
renovate:
stop_grace_period: 10m # >= your slowest run (a cold first run ~ the 10m healthcheck start_period); a shorter grace SIGKILLs it mid-drain
The drain is internally capped at SCHED_TIMEOUT (a run can't outlast its own timeout); stop_grace_period is the real outer bound.
Subcommands
| Command | Purpose |
|---|---|
daemon (default) |
PID 1; dispatches built-in vs external based on SCHED_INTERVAL. |
run [repo …] |
One Renovate run, then exit (exit 0 on success, 1 on failure). The external-trigger entry point; extra args are passed through to Renovate as repository slugs. |
health |
The Docker healthcheck probe (stats the marker file). |
Volumes
| Mount | Description |
|---|---|
/data |
RENOVATE_BASE_DIR — repository clones, caches, and dynamically installed tools. Persist it (the image creates it owned by the image's non-root user). |
/usr/src/app/config.js |
Optional — a Renovate config.js if you prefer it over RENOVATE_* env vars. |
Alerting
docker-renovate-scheduler has no metrics endpoint; its operational state is in its logs. The scheduler emits its own lifecycle lines as structured slog logfmt to the container log (level=INFO msg="renovate run complete" on success; level=ERROR msg="renovate run failed" or msg="renovate run timed out" on failure). Ship the container's logs to Loki (Grafana Alloy's Docker log discovery does this with no configuration) and evaluate these with Loki's ruler; firing alerts deliver through your Alertmanager exactly like Prometheus metric alerts.
These rules apply to built-in scheduling (SCHED_INTERVAL set to a duration), where each run is PID 1 and its lifecycle lines reach the container log. In external-trigger mode (SCHED_INTERVAL=off) each run is a separate docker exec process whose output goes to the trigger's own log, not the container's (see Scheduling modes), so neither rule sees per-run outcomes; alert on your trigger's job result instead.
groups:
- name: docker-renovate-scheduler
rules:
- alert: RenovateRunFailed
expr: |
sum by (container) (count_over_time(
{container="renovate"} |= `level=ERROR` [15m]
)) > 0
for: 0m
labels:
severity: warning
annotations:
summary: "renovate: a scheduled run failed"
description: >
The scheduler logged an error: a run that exited non-zero
(`renovate run failed`), a run that hit SCHED_TIMEOUT
(`renovate run timed out`), or a base-directory or lock error. No
dependency PRs are raised until the next clean run. Check the
container logs, RENOVATE_TOKEN, and platform reachability. A
graceful shutdown logs at WARN, so a redeploy does not trip this.
- alert: RenovateNoRecentRun
expr: |
absent_over_time({container="renovate"} |= `renovate run complete` [13h])
for: 30m
labels:
severity: warning
annotations:
summary: "renovate has not completed a run in 13h"
description: >
In built-in mode the scheduler logs `renovate run complete` at
startup and then every SCHED_INTERVAL (default 6h). None in 13h
while the container is up means the interval loop is wedged and no
dependency PRs are being raised even though nothing logged an error.
Restart the container. The 13h window spans two default 6h intervals
plus margin; adjust it to your SCHED_INTERVAL.
Thresholds and the severity label are starting points; adjust the deadman window to your SCHED_INTERVAL and the container selector (or job / service, depending on your log collector) to your deployment, and route by whatever labels your Alertmanager uses.
Healthcheck
docker-renovate-scheduler health checks a marker file set after each run. In built-in mode the container starts unhealthy and flips to healthy after the first successful run (size healthcheck.start_period for the time a first run may take); a failed run flips it unhealthy, and it recovers on the next clean run. In external mode it starts healthy (idle, nothing has failed) and each triggered run updates the marker.
HEALTHCHECK --interval=60s --timeout=5s --retries=3 --start-period=30s \
CMD ["/usr/local/bin/docker-renovate-scheduler", "health"]
The image bakes a conservative --start-period=30s; the example compose.yaml raises it to 10m because a first run on a cold cache installs toolchains on demand and can take several minutes. Compose merges this single field onto the baked healthcheck (interval/timeout/retries/CMD are inherited) -- size it to your own first-run duration.
Security
No network listener, no HTTP server, no exposed ports. The unused docker CLI is stripped from the base image, removing that container-execution surface (see Not distroless — on purpose). Runs as the base image's non-root user (UID 12021) by default, or whatever you set via Compose user: (e.g. 1000:1000 to match a rootless host UID); the /tmp run-lock and health marker are owned by that user, so external run triggers must execute as it (see Scheduling modes). The scheduler executes Renovate via the image entrypoint with an explicit argument slice (no shell). Renovate's token is never logged by the scheduler. The base image is Renovate's own (AGPL-3.0); the scheduler wrapper is GPL-3.0.
Dependencies
All dependencies are updated automatically via Renovate and pinned by digest or version for reproducibility.
| Dependency | Source |
|---|---|
| renovate/renovate | Docker Hub (the runtime base) |
| golang | Go (builder stage only) |
github.com/cplieger/health |
file-marker healthcheck |
github.com/cplieger/scheduler |
interval parsing, overlap flock, rerun flag, drain, graceful command runner |
github.com/cplieger/slogx |
slog setup (UTC logfmt) |
Credits
This image packages Renovate by Mend.io (AGPL-3.0). All credit for the dependency-update engine goes to its upstream maintainers; this project only adds a scheduling wrapper.
Disclaimer
This project is built with care and follows security best practices, but it is intended for personal / self-hosted use. No guarantees of fitness for production environments. Use at your own risk.
This project was built with AI-assisted tooling using Claude Opus and Kiro. The human maintainer defines architecture, supervises implementation, and makes all final decisions.
License
This project is licensed under the GNU General Public License v3.0.