-
I'm recently using podman(4.6.1) on a rhel server (the podman info is at the bottom). I tried to implement two separated podman systems for one rootless linux user, i.e. separating graphroot, runroot, static dir, network config dir of the test result is that the containers separated kind of survived from My question is that does I forget some settings or still need to have some other knowledge related to Podman in order to achieve my scenario ?
podmanfn info
podman info --log-level debug
|
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
There is only one user namespace (pause process) per user. When you call podman system reset it will kill the pause process thus make other namespace incorrect. You can do that stuff to isolate instances but don't use system reset or system migrate as they kill the pause process. If you do |
Beta Was this translation helpful? Give feedback.
There is only one user namespace (pause process) per user. When you call podman system reset it will kill the pause process thus make other namespace incorrect.
You can do that stuff to isolate instances but don't use system reset or system migrate as they kill the pause process. If you do
podman rm -all; podman image rm --all; podman volume rm --all
etc... then it should still work.