From 0ee9e2210976122fe9033494ae2055143e1c9010 Mon Sep 17 00:00:00 2001 From: mace Date: Mon, 8 Jun 2026 14:31:06 +0200 Subject: [PATCH] added docker update to readme --- README.md | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/README.md b/README.md index 0144277..a7554f4 100644 --- a/README.md +++ b/README.md @@ -227,6 +227,16 @@ docker info > ``` > then, as your sudo-capable user, `sudo systemctl restart docker-rss-svc`. +**Updating rootless Docker:** the daemon and CLI live in `/home/rss-svc/bin` as a private, self-contained copy of the static binaries — entirely decoupled from the system package manager, so `apt upgrade` never touches them. To update, stop the daemon, re-run the same installer (it just re-downloads the current stable bundle for your architecture and overwrites the files in `~/bin` in place), then start it back up: + +```sh +sudo systemctl stop docker-rss-svc +sudo -u rss-svc -H curl -fsSL https://get.docker.com/rootless -o /tmp/install-rootless.sh +sudo -u rss-svc -H sh /tmp/install-rootless.sh +sudo systemctl start docker-rss-svc +sudo -u rss-svc -H docker info # confirm the new version +``` + **3. Deploy the stack as `rss-svc`:** ```sh