CentOS 7.7은 docker-ce 최신 패키지를 업그레이드할 수 없습니다.

CentOS 7.7은 docker-ce 최신 패키지를 업그레이드할 수 없습니다.

CentOS 7 서버가 있고 docker-ce-18.06.1.ce-3.el7.x86_64설치되어 있습니다. 이제 최신 docker rpm으로 업그레이드하고 싶습니다. 그러나 yum upgrade docker-ce최신 패키지는 표시되지 않습니다. 이 문제를 해결하는 데 도움이 되었나요?

최신 rpm이 나열되지 않음

yum list docker-ce --show-duplicates
Loaded plugins: copr, fastestmirror, rhnplugin 
Installed Packages
docker-ce.x86_64                                                                      18.06.1.ce-3.el7                                                                       @docker-ce-stable

모든 저장소가 활성화되었습니다.

# yum repolist
Loaded plugins: copr, fastestmirror

repo id                                                                              repo name                                                                                       status
base/7/x86_64                                                                        CentOS-7 - Base                                                                                 10,060+10
docker-ce-stable/x86_64                                                              Docker CE Stable - x86_64                                                                           12+67
epel/x86_64                                                                          Extra Packages for Enterprise Linux 7 - x86_64                                                   13,335+1
extras/7/x86_64                                                                      CentOS-7 - Extras                                                                                  356+41
google-chrome                                                                        google-chrome                                                                                           3
group_spacewalkproject-nightly-client/x86_64                                         Copr repo for nightly-client owned by @spacewalkproject                                             59+21
nodesource/x86_64                                                                    Node.js Packages for Enterprise Linux 7 - x86_64                                                       97
updates/7/x86_64                                                                     CentOS-7 - Updates                                                                                 831+30
yarn                                                                                 Yarn Repository                                                                                        50
repolist: 24,803

이 명령은 모든 패키지를 반환합니다. yum --disablerepo=* --enablerepo=docker-ce-stable upgrade

저장소 세부정보 추가

[docker-ce-stable]
name=Docker CE Stable - $basearch
baseurl=https://download.docker.com/linux/centos/7/$basearch/stable
enabled=1
gpgcheck=1
gpgkey=https://download.docker.com/linux/centos/gpg

답변1

/etc/yum.conf 파일에 docker 패키지에 대한 제외 목록이 있는 것을 발견했습니다. 이 명령을 사용하여 패키지를 설치합니다.

yum --disablerepo=* --enablerepo=docker-ce-stable upgrade --disableexcludes=all docker-ce

감사해요

관련 정보