본문 바로가기

개발

Error saving credentials: error storing credentials - err: exit status 1, out:

로컬에서 AWS ECR 로그인을 하려는데 다음과 같은 에러가 떴다. 

 

Error saving credentials: error storing credentials - err: exit status 1, out:

 

sudo vi ~/.docker/config.json

명령어를 친 다음

 

"credsStore": "osxkeychain"

이렇게 바꿔준다. 그리고 :wq 엔터. 

 

그러면 로그인이 될 것이다. 

 

출처: https://stackoverflow.com/questions/64455468/error-when-logging-into-ecr-with-docker-login-error-saving-credentials-not

 

Error when logging into ECR with Docker login: "Error saving credentials... not implemented"

I'm trying to log in to AWS ECR with the Docker login command. I can get a password with the AWS CLI with the command aws ecr get-login-password but when piping this into the docker login command I...

stackoverflow.com