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!
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:docker login registry.digitalocean.com
read
and write
access to the registry.Heya, @ajats
Docker on WSL2 sometimes defaults to docker-credential-desktop.exe
, which might not be available. You can switch to docker-credential-wincred
, which is generally more compatible with WSL2:
Open your WSL2 terminal and run:
echo '{"credsStore": "wincred"}' > ~/.docker/config.json
wincred
as your credential helper for Docker, which is available on Windows and often resolves this issue.Hope that this helps!
Get paid to write technical tutorials and select a tech-focused charity to receive a matching donation.
Full documentation for every DigitalOcean product.
The Wave has everything you need to know about building a business, from raising funding to marketing your product.
Stay up to date by signing up for DigitalOcean’s Infrastructure as a Newsletter.
New accounts only. By submitting your email you agree to our Privacy Policy
Scale up as you grow — whether you're running one virtual machine or ten thousand.
Sign up and get $200 in credit for your first 60 days with DigitalOcean.*
*This promotional offer applies to new accounts only.