반응형
상황
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
반응형
'개발(합니다) > 시나브로(이슈)' 카테고리의 다른 글
[Flutter] minSdkVersion - the library might be using APIs not available in 16 (0) | 2021.10.25 |
---|---|
[Flutter-mac] arning: cocoapods not installed. skipping pod install. (0) | 2021.10.24 |
[Flutter] type ‘List‘ is not a subtype of type ‘List‘ in Flutter (0) | 2021.10.16 |
[Flutter] OS Error: No address associated with hostname (0) | 2021.10.08 |
[Flutter] Can't load Kernel binary: Invalid SDK hash (0) | 2021.10.07 |