erro happens when I run
doctl registry login
Logging Docker in to registry.digitalocean.com
Notice: Login valid for 30 days. Use the --expiry-seconds flag to set a shorter expiration or --never-expire for no expiration.
Error: error storing credentials - err: exec: "docker-credential-desktop.exe": executable file not found in $PATH, out: ``
I get this error when I try to login to push a container to registry. I am on a work machine in using WSL2
I’ve been working thru these docs and this was the first error I couldn’t get passed. would love some insight on this thanks for your help and DigitalOcean
This textbox defaults to using Markdown to format your answer.
You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!
These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.
Heya, @ajats
Docker on WSL2 sometimes defaults to
docker-credential-desktop.exe
, which might not be available. You can switch todocker-credential-wincred
, which is generally more compatible with WSL2:Open your WSL2 terminal and run:
wincred
as your credential helper for Docker, which is available on Windows and often resolves this issue.Hope that this helps!
Hello,
The error you’re encountering is likely due to WSL2 trying to invoke a credential helper that’s available on Windows (like
docker-credential-desktop.exe
) but isn’t accessible from the WSL environment. Here’s how you can work around it:doctl registry login
, try using Docker’s own login command with your DigitalOcean credentials:read
andwrite
access to the registry.