3
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

az acr login でError saving credentials: error storing credentials - err: exec: "docker-credential-desktop.exe": executable file not found in $PATH, out: ``

Posted at

装具したエラー

以下のエラーが出る。

az acr login -n <acrname>
Error saving credentials: error storing credentials - err: exec: "docker-credential-desktop.exe": executable file not found in $PATH, out: ``
Login failed.

解決策

~/.docker/config.json 内にある credsStore を削除

$ cat ~/.docker/config.json
{
  "auths": {
    <省略>
  },
  "credsStore": "desktop.exe" // <= この行を削除
}

参考

https://stackoverflow.com/a/65896682
https://forums.docker.com/t/docker-credential-desktop-exe-executable-file-not-found-in-path-using-wsl2/100225/29

3
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
3
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?