/usr/bin/docker-current: Error response from daemon: shim error: docker-runc not installed on system.    cd /usr/libexec/docker/
    sudo ln -s docker-runc-current docker-runc     vi /etc/docker/daemon.json  
    添加内容如下:{
    "log-level":"warn",
    "runtimes": {
        "docker-runc": {
            "path": "/usr/libexec/docker/docker-runc-current"
        }
    },
    "add-runtime": "docker-runc=/usr/libexec/docker/docker-runc-current",
    "default-runtime": "docker-runc"
}    保存退出,执行如下动作:
    systemctl daemon-reload
    systemctl start dockererror: docker-runc not installed on system
原文:http://blog.51cto.com/michaelkang/2160171