Replies: 1 comment
-
I think it relates to #1815 . |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Related: containers/crun#1245
When using podman with
crun
, the mount propagation of the root directory and the directory mounted with tmpfs will be shared.On the other hand, when using podman with
runc
, it will be private.The
.linux.rootfsPropagation
field in theconfig.json
created by podman is set toshared
.Therefore, it appears that
runc
forcibly changes the mount propagation fromshared
toprivate
.Why force mount propagation to be
private
?Should it behave like
crun
?Steps to reproduce:
Beta Was this translation helpful? Give feedback.
All reactions