Development Artist

[Issue, Docker] docker.credentials.errors.InitializationError: docker-credential-desktop.exe not installed or not available in PATH 본문

Internship

[Issue, Docker] docker.credentials.errors.InitializationError: docker-credential-desktop.exe not installed or not available in PATH

JMcunst 2021. 7. 19. 15:32
728x90
반응형

이슈

docker-compose up을 하면서, image를 pulling하는 과정에서, credentials 에러 발생.


해결

1. cd ~/.docker

2. cat config.json 해보면, credsStore가 보이는데, credStore로 바꿔준다. s를 뺀다.

3. 다시 docker-compose up을 했는데, 이젠 접근거부가 발생.

4. 다시 config.json 파일로 가서. credsStore로 다시 s추가해주고, 앞에 _ 추가.

5. 또, 접근거부가 발생.

6. 추측 : pulling 하려고 하는 url에 대해 내가 접근 권한이 없어서 발생하는 것으로 예상. 해당 url에 접근 권한을 부여 받을 필요가 있을 것 같음.

7. docker login 을 쳐본다. 로그인 정보가 없다고 나온다. 아차...싶었다. 그래서 해당 container registry의 CLI를 참고하여, docker login '참고 url'하여 로그인 후 정상 작동.

728x90
반응형
Comments