问题描述: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