From 93f8b25214a6ddec284ede63361c620a0913f058 Mon Sep 17 00:00:00 2001 From: aramperes Date: Sat, 23 Aug 2025 11:57:24 -0400 Subject: [PATCH] Update README.md --- README.md | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index d02c37a..e0d66af 100644 --- a/README.md +++ b/README.md @@ -8,7 +8,8 @@ My configurations for running a Forgejo Runner with root-less Podman Quadlets. T Install podman: ```sh -sudo apt-get update && sudo apt-get install -y podman +sudo apt-get update && sudo apt-get install -y podman fuse-overlayfs +sudo modprobe fuse ``` Create the data directories (`/data`) for persisting Forgejo runner configurations and cache: @@ -177,4 +178,15 @@ jobs: registry: git.poire.dev username: ${{ env.FORGEJO_ACTOR }} password: ${{ secrets.PACKAGE_TOKEN }} +``` + +## Making Changes + +If you would like to modify the quadlet configurations, you will need to run these commands to validate, apply, and restart: + +```sh +/usr/lib/systemd/system-generators/podman-system-generator --user --dryrun && echo 'Validated!' +systemctl --user daemon-reload +systemctl --user restart podman-runtime.service +systemctl --user restart forgejo-runner.service ``` \ No newline at end of file