1.报错信息
docker run创建新容器时报错
/usr/bin/docker-current: Error response from daemon: shim error: docker-runc not installed on system.
2.解决方案
[root@localhost ~]#cd /usr/libexec/docker/
[root@localhost ~]#sudo ln -s docker-runc-current docker-runc
如果上面设置完仍然报错,则用下面的方法:
[root@localhost ~]#sudo ln -s /usr/libexec/docker/docker-runc-current /usr/bin/docker-runc
3.验证
重新创建容器即可。
标签:bin,shim,current,runc,usr,docker From: https://www.cnblogs.com/hujunwei/p/18210038