Update README.md

This commit is contained in:
Aram 🍐 2025-08-23 11:57:24 -04:00
parent de1c7f47fc
commit 93f8b25214

View file

@ -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
```