You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This is on Fedora 34 host, and just freshly pulled in Fedora 34 docker image.
Edit: running with selinux disabled temporarily (sudo setenforce 0) seems to allow the containers to be built correctly.
Fedora has selinux on by default (I think, at least I've never voluntarily followed a guide to enable it) so this repo should be updated to work with it, or explicit instructions should be included in the readme for disabling it.
The text was updated successfully, but these errors were encountered:
Something like this can help to notify users about SELinux:
if [ -f /etc/selinux/config ] && [ $(getenforce)=="Enforcing" ];thenecho"Cannot build with SELinux status set to Enforcing."echo"Please set SELinux status to Permissive with:"echo" sudo setenforce 0"exit 1
fi
Trying to run
fails for me in trying to build this container:
The first few containers seem to build fine:
This one failing container then in turn seems to cause all the rest of the containers to fail to build:
Entire build log:
log.txt
This is on Fedora 34 host, and just freshly pulled in Fedora 34 docker image.
Edit: running with selinux disabled temporarily (
sudo setenforce 0
) seems to allow the containers to be built correctly.Fedora has selinux on by default (I think, at least I've never voluntarily followed a guide to enable it) so this repo should be updated to work with it, or explicit instructions should be included in the readme for disabling it.
The text was updated successfully, but these errors were encountered: