問題描述:docker
docker運行鏡像的時候,報錯以下:bash
[root@etcd1 k8s]# docker run -it registry.helloworld.com/test/atsd:latest bash WARNING: IPv4 forwarding is disabled. Networking will not work. /usr/bin/docker-current: Error response from daemon: shim error: docker-runc not installed on system.
問題解決:blog
通過一番排查,以下解決方案有用:it
[root@etcd1 k8s]# cd /usr/libexec/docker/ [root@etcd1 docker]# ln -s docker-runc-current docker-runc
以上,問題解決。 class