エラー
mac で ECR にログインしようとすると怒られる
Error saving credentials: error storing credentials - err: exit status 1, out: `The user name or passphrase you entered is not correct.`
解決
$ cat ~/.docker/config.json
{
"auths": {
xxxxx
},
"credsStore": "desktop"
}%
credsStore
を消せばいいらしい
$ vim ~/.docker/config.json
$ cat ~/.docker/config.json
{
"auths": {
xxxxx
}
}