update quickstart

This commit is contained in:
redbeardymcgee 2024-11-29 20:19:01 -06:00
parent a5e3b2077d
commit 9d84818035

View file

@ -14,17 +14,17 @@ are `quadlets`, which is an interface between `systemd` and `podman`.
- `podman>=4.3.0` - `podman>=4.3.0`
- `systemd` - `systemd`
### How to use these files ### Quickstart
Copy the `quadlets/$application` directory from this repository that you want to run
into `/home/$ctuser/.config/containers/systemd/`. Make any necessary changes to
the files within this directory to match your system and needs, such as
pointing a volume path at a different mount point or filling in any
`$variables` or blank values.
```bash ```bash
systemctl --user start $application git clone --depth=1 https://github.com/redbeardymcgee/podbox
journalctl -e # jump to the end of the logs to see if the app started cp -a podbox/quadlets/"$app" "$XDG_CONFIG_HOME"/containers/systemd/
# Edit the files in $XDG_CONFIG_HOME/containers/systemd/$app/ as needed
$EDITOR "$XDG_CONFIG_HOME/containers/systemd/$app/*"
systemctl --user daemon-reload
systemctl --user start "$app"
# Jump to the end of the logs to see if the app started
journalctl -e
``` ```
## Upcoming containers ## Upcoming containers