
It makes more sense to wrap every quadlet in its own dir. This makes it easier to copy a quadlet with batteries included for apps that require a valid config to be useful.
11 lines
271 B
Markdown
11 lines
271 B
Markdown
# podman 5.2.5
|
|
|
|
```bash
|
|
dnf -y install btrfs-progs-devel passt
|
|
curl -fsSL \
|
|
-o podman-5.2.5.tar.gz \
|
|
https://github.com/containers/podman/archive/refs/tags/v5.2.5.tar.gz
|
|
tar xzf podman-5.2.5.tar.gz
|
|
cd podman-5.2.5
|
|
make BUILDTAGS="selinux seccomp" PREFIX=/usr
|
|
```
|