반응형
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
반응형
'IT' 카테고리의 다른 글
postgresql docker-compose.yml 설정 (0) | 2022.11.24 |
---|---|
docker 이미지 tar file 로드 (0) | 2022.11.23 |
Spring boot Failed to configure a DataSource: 'url' attribute is not specified and no embedded datasource could be configured. (0) | 2022.11.23 |
docker 디렉토리 변경하는 방법 (0) | 2022.11.23 |
리눅스 버전 확인 (0) | 2022.11.23 |