参考:https://www.cnblogs.com/performancetest/p/5719420.html
进容器看映射的目录看到报错:
ls: cannot open directory .: Permission denied
解决:
关闭selinux,有的系统默认就是关的,有的不是
1
永久设置:
cat /etc/selinux/config
设置SELINUX=disabled后重启机器reboot
临时设置,重启后失效:setenforce 0
参考:https://www.jianshu.com/p/01f7436998ae
或者
2
在docker run中加入 --privileged=true 给容器加上特定权限