stacks/homelab/README.md

12 lines
219 B
Markdown
Raw Normal View History

2023-12-28 10:07:43 -07:00
My homelab now uses runit-managed podman containers.
2021-12-17 09:38:07 -07:00
2023-12-28 11:12:04 -07:00
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
```