본문 바로가기

Programing/OpenSource

[Docker] Unable to find image 해결책

에러 메세지

$ docker run -d --name sonarqube -p 9000:9000 -p 9092:9092 sonarqube
Unable to find image 'sonarqube:latest' locally
docker: Error response from daemon: Get https://registry-1.docker.io/v2/library/sonarqube/manifests/latest: unauthorized: incorrect username or password.
See 'docker run --help'.

시도

Docker Update

업데이트 할 때 권한에 대한 확인 창이 뜬다.

 

하지만 마찬가지이다.

 

Troubleshoot

진단 성공

딱히 도움이 되지 않는다.

 

원인은...

docker rmi 명령으로 이미지를 지웠는데, 컨테이너는 남아있었다.

docker ps -a 로 살펴보면 아래 그림처럼 조회가 된다.

해결책

docker rm 명령으로 컨테이너를 지웠다.

하지만 안되었다.

원인은 따로 있었다.

그래서 에러 메세지를 잘 봐야 한다.

docker error response from daemon unauthorized incorrect username or password

해결책

docker login 명령으로 가능하다.

아래 블로그가 도움이 되었다.

https://tyson.tistory.com/140