From b442330a82c82802d2ddb002b7c6368a3d9738bb Mon Sep 17 00:00:00 2001 From: Sebastiaan de Schaetzen Date: Tue, 18 Feb 2025 14:40:13 +0100 Subject: [PATCH] Add readme --- README.md | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 0000000..1537b5a --- /dev/null +++ b/README.md @@ -0,0 +1,12 @@ +# Runner Images +This contains the docker runner image used by the Gitea Action runner. + +## Updating the runner +The runner will run from a cached version of the image. +In order to use the new version, one has to obtain a shell in the runner container, and pull the image again. + +```sh +ssh pi +docker exec -it homeserver-gitea-runner-1 /bin/sh +docker pull seeseemelk/runner-images:ubuntu-latest +```