Alpine linux ERROR: unsatisfiable constraints: docker (missing): required by: world[docker] 오류 해결방법
Programming알파인 리눅스에서 도커를 설치하려고 할때 다음과 같은 오류가 발생하는 경우
~# apk add docker
ERROR: unsatisfiable constraints:
docker (missing):
required by: world[docker]
~#
아래 명령어로 repository를 추가해준뒤 apk update
하여 다시 시도하면 해결된다.
~# echo "http://dl-cdn.alpinelinux.org/alpine/latest-stable/community" >> /etc/apk/repositories
~# apk update
~# apk add docker
'Programming' 카테고리의 다른 글
Alpine Linux에서 root 유저로 권한 변경하는법 (0) | 2020.02.12 |
---|---|
Alpine Linux에서 일반유저로 도커 관리하는 방법 (0) | 2020.02.12 |
Python timeit 모듈 사용법 (성능 측정) (0) | 2020.02.10 |
Python curses 모듈 사용법 (0) | 2020.02.08 |
busybox 사용법 (0) | 2020.02.04 |