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
On a Fedora install with all the dependencies properly installed, running docker compose up will lead to permission errors if SELinux is enabled or set to enforcing mode.
A simple fix is sudo setenforce 0, which will temporarily set SELinux into permissive mode for the shell session, although this may not be recommended for production environments (some more fine-grained control of host resources may be desired). At the very least, it might be nice to document this for Linux users, even though this is a very common issue with docker and SELinux in general.
The text was updated successfully, but these errors were encountered:
Alexhuszagh
changed the title
Doesn't work with SELinux Enabled.
Permission Errors with SELinux Enabled.
Mar 3, 2019
will add this to the readme, in general this tool has been focused on dev/test networks, we should revisit if folks are targeting selinux going into the production release
On a Fedora install with all the dependencies properly installed, running
docker compose up
will lead to permission errors if SELinux is enabled or set to enforcing mode.A simple fix is
sudo setenforce 0
, which will temporarily set SELinux into permissive mode for the shell session, although this may not be recommended for production environments (some more fine-grained control of host resources may be desired). At the very least, it might be nice to document this for Linux users, even though this is a very common issue with docker and SELinux in general.The text was updated successfully, but these errors were encountered: