Install Podman and Enable User Namespaces
sudo apt update
sudo apt install -y podman
On Debian 12, Podman ships with userns-remap turned off.
I always enable it right away by editing /etc/containers/containers.conf:
[engine]
userns = "keep-id"
keep-id keeps the container’s UID/GID the same as the host user’s, which is the simplest approach for a single‑user homelab. If you have multiple users, you might want auto or a custom mapping.
After that tweak, restart the daemon:
[Read More]