Turns one or more GitHub repos that publish .deb files as release assets into a normal
apt repository, so apt update/apt upgrade picks up new releases automatically. No
.deb bytes are mirrored — lazyrepo only serves repository metadata and redirects package
downloads straight to GitHub.
Copy config.example.yaml to config.yaml and list the repos to track:
repos:
- repo: rcarmo/pve-microvmSee config.example.yaml for all options (listen, poll_interval, cache_file,
per-repo asset_filter).
docker compose up -decho "deb [trusted=yes] http://<host>:8080/ ./" | sudo tee /etc/apt/sources.list.d/lazyrepo.list
sudo apt updatePackages are unsigned (flat apt repository format, [trusted=yes]) — see
docs/superpowers/specs/2026-07-26-github-releases-apt-repo-design.md for why, and for
the full design.
