Homepage Dashboard with Docker Autodiscovery

Ditching Homarr for Homepage with Docker Autodiscovery Homarr has been running into memory issues on my homelab, and on top of that, every new service meant a manual trip into the UI to wire it up. That kind of overhead compounds quickly. Homepage fixes both: it is lighter, and it supports Docker label-based autodiscovery, meaning containers register themselves on the dashboard just by having the right labels. My Setup Homepage runs on my main lxc-homelab LXC container, alongside Traefik on the proxy Docker network. A second container, lxc-media, runs my media stack separately. Both need to show up on the dashboard, which is where things get slightly more involved. ...

July 23, 2026 · 4 min · Gerry Hendrickx

Deploying a Hugo blog from Azure DevOps to a self-hosted VPS

I wanted a clean publish pipeline for my Hugo blog hosted on a Netcup VPS. The goal was simple: push to the main branch in Azure DevOps, and the live site update automatically. No manual builds, no FTP. The VPS already runs Pangolin, which bundles Traefik as its reverse proxy. That meant I had an existing Docker network and a working cert resolver to plug into. The missing pieces were the Hugo serving container, a deploy user with SSH access, and an Azure Pipeline to tie it together. ...

April 22, 2026 · 6 min · Gerry Hendrickx