반응형
반응형
docker 설치
$ apt install docker-ce
에러 내용
containerd.io 패키지 버전 1.4.1 이상 설치 필요
The following packages have unmet dependencies:
docker-ce : Depends: containerd.io (>= 1.4.1) but it is not going to be installed
E: Unable to correct problems, you have held broken packages.
containerd.io 설치
$ apt install containerd.io
에러 내용
이번엔 libseccomp2 패키지 버전 2.5.0 이상 설치 필요
containerd.io : Depends: libseccomp2 ~
조치 내용 - libseccomp2 2.5.1 수동으로 설치
$ wget http://archive.ubuntu.com/ubuntu/pool/main/libs/libseccomp/libseccomp2_2.5.1-1ubuntu1~20.04.2_amd64.deb
$ dpkg -i libseccomp2_2.5.1-1ubuntu1~20.04.2_amd64.deb
반응형
'IT > Docker & Kubernetes' 카테고리의 다른 글
[Docker] private local registry 구축하기 (0) | 2021.03.19 |
---|---|
[k8s] kubernetes(쿠버네티스) cordon drain uncordon (0) | 2020.12.30 |
[k8s] kubernetes(쿠버네티스) node 추가 제거 (1) | 2020.07.18 |
[k8s] kubernetes(쿠버네티스) cluster에 nginx 설치하기 (0) | 2020.07.10 |
[k8s] kubespray로 kubernetes(쿠버네티스) 설치하기 (2) | 2020.07.01 |