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
Hello !
I tried to follow the tutorial on Fedora 25, default installation.
I believe docker needs additional mount flag to behave properly on SELinux systems -Z
Not sure what does this flag do if the systems is not SELinux-enabled tbh, can find out.
I can try writing a PR for the docs to mention that case, please let me know if that would be ok.
thanks a lot and have a great day !
docker run -v $(pwd):/source -it corey/afl.rs sh
# cargo build
error: could not find `Cargo.toml` in `/source` or any parent directory
# pwd
/source
# ls -hal
ls: cannot open directory '.': Permission denied
docker run -v $(pwd):/source:Z -it corey/afl.rs sh
# ls -hal
[works]
The text was updated successfully, but these errors were encountered:
Hello !
I tried to follow the tutorial on Fedora 25, default installation.
I believe docker needs additional mount flag to behave properly on SELinux systems
-Z
Not sure what does this flag do if the systems is not SELinux-enabled tbh, can find out.
I can try writing a PR for the docs to mention that case, please let me know if that would be ok.
thanks a lot and have a great day !
The text was updated successfully, but these errors were encountered: