본문 바로가기

개발(합니다)/시나브로(이슈)

[Centos] Problem: package podman-3.2.3-0.11.module_el8.4.0+942+d25aada8.x86_64 requires runc >= 1.0.0-57, but none of the providers can be installed

반응형

상황

centos를 오랜만에 개인 서버에 올렸습니다.

docker를 설치하려고 하는데 버전이 안맞는다는 에러가 발생했습니다.

 

문제 파악

아무래도 podman으로 대체되면서 생기는 오류 같습니다.

 

아래와 같은 해결책을 제시하고 있습니다.

(try to add '--allowerasing' to command line to replace conflicting packages or '--skip-broken' to skip uninstallable packages or '--nobest' to use not only best candidate packages)

 

해결 방법

아래 명령어에 옵션을 추가하여 실행합니다.

 

yum install -y docker-ce --allowerasing

 

반응형