File tree Expand file tree Collapse file tree 1 file changed +8
-2
lines changed
system-reinstall-bootc/src Expand file tree Collapse file tree 1 file changed +8
-2
lines changed Original file line number Diff line number Diff line change @@ -17,10 +17,16 @@ pub(crate) fn command(image: &str, root_key: &Option<UserKeys>) -> Command {
1717 "--pid=host" ,
1818 // Set the UID/GID to root overwriting any possible USER directive in the Containerfile
1919 "--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.
20+ // Keep these here to support images with bootc versions prior to 1.1.5
21+ // when these parameters were obsoleted
2222 "-v" ,
2323 "/var/lib/containers:/var/lib/containers" ,
24+ "-v" ,
25+ "/dev:/dev" ,
26+ "--security-opt" ,
27+ "label=type:unconfined_t" ,
28+ "-v" ,
29+ "/:/target" ,
2430 ]
2531 . map ( String :: from)
2632 . to_vec ( ) ;
You can’t perform that action at this time.
0 commit comments