We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents f222c1e + 5c6b616 commit 7592807Copy full SHA for 7592807
system-reinstall-bootc/src/podman.rs
@@ -15,6 +15,8 @@ pub(crate) fn command(image: &str, root_key: &Option<UserKeys>) -> Command {
15
"--privileged",
16
// The container needs to access the host's PID namespace to mount host directories
17
"--pid=host",
18
+ // Set the UID/GID to root overwriting any possible USER directive in the Containerfile
19
+ "--user root:root",
20
// Since https://github.com/containers/bootc/pull/919 this mount should not be needed, but
21
// some reason with e.g. quay.io/fedora/fedora-bootc:41 it is still needed.
22
"-v",
0 commit comments