K8s 安裝 錯誤:docker-ce conflicts with 2:docker-1.13.1-74.git

giserinchina發表於2018-12-21

錯誤:docker-ce conflicts with 2:docker-1.13.1-74.git

CentOS7中安裝k8s:

    `yum install kubernetes`

安裝K8S出現如下錯誤提示:

    錯誤:docker-ce conflicts with 2:docker-1.13.1-74.git6e3bb8e.el7.centos.x86_64
     您可以嘗試新增 --skip-broken 選項來解決該問題
     您可以嘗試執行:rpm -Va --nofiles --nodigest

解決辦法:
系統中已經安裝有docker-ce,解除安裝後可正常安裝k8s

    `yum -y remove docker-ce`

相關文章