Clarify how to run everything

This commit is contained in:
Neale Pickett 2023-12-28 11:12:04 -07:00
parent 06c27447fc
commit 269bbb2fe3
1 changed files with 9 additions and 1 deletions

View File

@ -1,3 +1,11 @@
My homelab now uses runit-managed podman containers.
runit essentially runs `*/run` in an endless loop.
If, for some reason,
`runit` and all its variants disappear,
you can get everything going this way:
```sh
for service in */; do
(cd $service && ./run) &
done
```