gpt4 book ai didi

docker - yum 安装报错 docker

转载 作者:太空宇宙 更新时间:2023-11-03 17:21:35 26 4
gpt4 key购买 nike

CentOS version:  lsb_release -d
Description: CentOS release 6.5 (Final)

我的仓库看起来像这样

cat /etc/yum.repos.d/docker.repo 
[dockerrepo]
name=Docker Repository
baseurl=https://yum.dockerproject.org/repo/main/centos/$releasever/
enabled=1
gpgcheck=1
gpgkey=https://yum.dockerproject.org/gpg

我有一些旧版本的 docker,当我尝试安装它时,出现错误。当我尝试跳过选项时,即使在那之后我的 centos 上甚至不存在 docker 服务 yum install docker-engine 有以下问题

Processing Conflict: docker-engine-1.7.1-1.el6.x86_64 conflicts docker-io
--> Finished Dependency Resolution
Error: docker-engine conflicts with docker-io-0.6.2-1.el6.x86_64
You could try using --skip-broken to work around the problem
You could try running: rpm -Va --nofiles --nodigest"

然后当我尝试启动它时 service docker start 不存在。

我如何清理所有 docker 内容并从头开始执行此操作?

最佳答案

Docker的正式发布no longer supports RHEL/Centos 6 .我认为 1.7.1 停止了,正式版本是 1.10。我建议更新到 Centos 7 或任何具有 3.10+ 内核的系统以使用最新的 docker-engine,因为它已经有了很大改进。

如果您无法使用 Centos 6.5,请继续使用 EPEL docker-io 软件包或安装 the 1.7.1 rpm .

彻底删除Centos 6包

yum remove docker-io

删除所有 docker 数据(并且永远取回它!)

rm -rf /var/lib/docker

删除 Docker 存储库配置

rm /etc/yum.repos.d/docker.repo

要么重新安装docker-io

yum install docker-io

或安装 docker-engine-1.7.1 rpm

yum install http://yum.dockerproject.org/repo/main/centos/6/Packages/docker-engine-1.7.1-1.el6.x86_64.rpm

启动它和docker

service docker start
docker run hello-world

关于docker - yum 安装报错 docker,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35385853/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com