博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Centos 7* installing Docker
阅读量:6282 次
发布时间:2019-06-22

本文共 915 字,大约阅读时间需要 3 分钟。

hot3.png

Error: docker-engine-selinux conflicts with 2:container-selinux-1.10.3-59.el7.centos.x86_64   You could try using --skip-broken to work around the problem

 

I had the same problem, and managed to solve it. What I did:

Look for a previous CentOs native docker install remnant and remove it:

[root@here ~]# rpm -aq | grep dockerdocker-common-1.10.3-59.el7.centos.x86_64[root@here ~]# yum remove docker*

 

That was not enough though

Look for that container-selinux and remove it too:

[root@here ~]# rpm -qa | grep container-selinuxcontainer-selinux-1.10.3-59.el7.centos.x86_64

First make sure it is not used by anything else (I had a doubt, I chose to play safe)

[root@here ~]# rpm -q --whatrequires container-selinux-1.10.3-59.el7.centos.x86_64no package requires container-selinux-1.10.3-59.el7.centos.x86_64[root@here ~]# yum remove container-selinux

and then I was good !

转载于:https://my.oschina.net/winheart/blog/1936363

你可能感兴趣的文章
iOS 多线程总结
查看>>
webpack是如何实现前端模块化的
查看>>
TCP的三次握手四次挥手
查看>>
关于redis的几件小事(六)redis的持久化
查看>>
package.json
查看>>
webpack4+babel7+eslint+editorconfig+react-hot-loader 搭建react开发环境
查看>>
Maven 插件
查看>>
初探Angular6.x---进入用户编辑模块
查看>>
计算机基础知识复习
查看>>
【前端词典】实现 Canvas 下雪背景引发的性能思考
查看>>
大佬是怎么思考设计MySQL优化方案的?
查看>>
<三体> 给岁月以文明, 给时光以生命
查看>>
Android开发 - 掌握ConstraintLayout(九)分组(Group)
查看>>
springboot+logback日志异步数据库
查看>>
Typescript教程之函数
查看>>
Android 高效安全加载图片
查看>>
vue中数组变动不被监测问题
查看>>
3.31
查看>>
类对象定义 二
查看>>
收费视频网站Netflix:用户到底想要“点”什么?
查看>>