IT

centos8버전에서 docker 설치 실패

프로개발러 2022. 11. 23. 15:15
반응형

 sudo yum install docker-ce docker-ce-cli containerd.io

 

명령어를 통해서 centos8에서 docker를 설치하려고 할 때, 아래와 같은 에러가 나온다면

 

 

Problem: package docker-ce-3:20.10.21-3.el8.x86_64 requires docker-ce-rootless-extras, but none of the providers can be installed

 

(try to add '--skip-broken' to skip uninstallable packages or '--nobest' to use not only best candidate packages)

 

requires docker-ce-rootless-extras, but none of the providers can be installed

 

 

 --allowerasing --nobest 명령어를 추가하면 된다.

 

sudo yum install docker-ce docker-ce-cli containerd.io --allowerasing --nobest

 

반응형