Self-hosted scheduler that wakes your Proxmox Backup Server, runs the backups, powers it off.
3.8K
Your Proxmox backup servers sleep. Joulenap wakes them, runs the backups, and tucks them back in.
Joulenap is a small self-hosted web UI + scheduler that runs automated Proxmox VE backups to Proxmox Backup Servers (PBS) that stay powered off most of the time. At the scheduled hour it wakes the backup server (Wake-on-LAN), runs the job, applies retention and garbage collection, powers it back down and notifies you: deduplicated backups on separate hardware, without a second machine running 24/7.
Website: https://joulenap.com
Live demo: https://www.joulenap.com/demo/
Source and docs: https://github.com/Joulenap/joulenap
License: AGPL-3.0
One command, no files to download. The container creates its config on first run and you fill it in through the web UI:
mkdir -p /opt/joulenap/data
docker run -d --name joulenap \
--restart unless-stopped \
--network host \
-e TZ=Etc/UTC \
-v /opt/joulenap/data:/app/data \
catubba/joulenap:latest
# then open http://<host-ip>:8080
--network host lets Joulenap send the Wake-on-LAN magic packet on your LAN broadcast. The single data directory persists config, run history, logs and the SSH key across updates. Timezone is picked on the first-run screen.
Docker Compose example, a step-by-step Proxmox LXC install and a native no-Docker install: https://github.com/Joulenap/joulenap/blob/main/docs/INSTALL.md
Joulenap owns the schedule itself, so nothing on the Proxmox host is modified. It talks to every PVE and PBS through their APIs (one scoped token per device) and uses a single SSH command only for the power-off, which has no API.
You describe your setup as routes: which Proxmox hosts back up to which backup server, on what schedule, with what retention. A route can fan several PVE hosts into one PBS, or copy one PBS to another for an off-site second copy. Joulenap wakes and sleeps every box each route touches, in the right order, and a box needed by two consecutive runs is woken once.
latest: the most recent stable releasex.y.z: a specific release, pinnedGuided wizards add each PVE or PBS: connect to the host, discover the backup servers it already knows about, detect interface and MAC, and provision the API token and SSH key. Root credentials are used only during that step and never stored.
Not affiliated with Proxmox Server Solutions GmbH.
Content type
Image
Digest
sha256:7db377234…
Size
79.8 MB
Last updated
19 days ago
docker pull catubba/joulenap