Question

error pushing container to registry | WSL2

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


Submit an answer


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!

Sign In or Sign Up to Answer

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.

alexdo
Site Moderator
Site Moderator badge
November 12, 2024

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
  • This will set wincred as your credential helper for Docker, which is available on Windows and often resolves this issue.

Hope that this helps!

KFSys
Site Moderator
Site Moderator badge
November 12, 2024

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:

  1. Switch to a Standard Docker Login: Instead of relying on the doctl registry login, try using Docker’s own login command with your DigitalOcean credentials:
docker login registry.digitalocean.com
  • This command should prompt you for your DigitalOcean credentials or token. Ensure that you use a DigitalOcean API token with read and write access to the registry.

Try DigitalOcean for free

Click below to sign up and get $200 of credit to try our products over 60 days!

Sign up

Become a contributor for community

Get paid to write technical tutorials and select a tech-focused charity to receive a matching donation.

DigitalOcean Documentation

Full documentation for every DigitalOcean product.

Resources for startups and SMBs

The Wave has everything you need to know about building a business, from raising funding to marketing your product.

Get our newsletter

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

The developer cloud

Scale up as you grow — whether you're running one virtual machine or ten thousand.

Get started for free

Sign up and get $200 in credit for your first 60 days with DigitalOcean.*

*This promotional offer applies to new accounts only.