I've been playing around a bit in unRAID and containers, both with podman and with docker. One key feature I would like to achieve is running "rootless". This is for my home use, I might be called a "power user" but for my home use I want something stable, easy and secure. The secure part is the biggest driving factor why I created this RFE but I've also seen what happens when the "single point of failure", the docker daemon, breaks or becomes unstable. docker seemed to be quite straight forward, Clean out everything docker and do a fresh install of it Edit /boot/config/go to create files touch /etc/subuid /etc/subgid Add one line at the end of /boot/config/docker.cfg DOCKER_OPTS="$DOCKER_OPTS --userns-remap=default" The problem that arises is that no container can be created. try starting a container without explicit --userns=host failes with docker: Error response from daemon: failed to create task for container: failed to create shim task: OCI runtime create failed: runc create failed: unable to start container process: error during container init: error mounting "proc" to rootfs at "/proc" So far, I haven't been able to figure out the problem... it might be something with how unRAID handles users and permissions in its special way. I thought podman was going to be trickier, To install the package I first needed to find it or compile it myself... I've done both ways by now. ( installed the one from https://forums.unraid.net/topic/152340-support-rootless-podman-as-container-runtime/#findComment-1365777 ) Installation was very straight forward, I followed https://serverlabs.com.au/blogs/guides/installing-slackware-packages-on-unraid... some dependency hell later ( i forgot to install all dependencies ) and podman was working. Running podman without any configuration at all worked ( could be because step 2 from the docker installation was still present in /boot/config/go ), the container got downloaded and hello-world was displayed. Then came the configuration, everything done from /boot/config/go. Create user, create /etc/{subuid,subgid}, copy configurationsfiles from /boot/config/* to their proper places. I also created an alias for docker that points to podman... but that got a little bit tricky since unRAID seemed unsure if docker was started or not... and integrating with the webGUI is not something I got working yet. More work needs to be done before I can say "I got podman fully working on unRAID" but it seems doable.