Home > Enterprise >  Docker login: nvcr.io/v2 404
Docker login: nvcr.io/v2 404

Time:03-27

I'm trying to run some Nvidia docker containers in WSL2 but I need to authenticate first, but docker login is giving me an error:

(base) ian@IansDesktop:~$ docker login ncvr.io
Username: $oauthtoken
Password:
INFO[0011] Error logging in to endpoint, trying next endpoint  error="login attempt to https://ncvr.io/v2/ failed with status: 404 Not Found"
login attempt to https://ncvr.io/v2/ failed with status: 404 Not Found

What am I doing wrong?

CodePudding user response:

You have a typo. You've just sent your login credentials to ncvr.io. The registry for Nvidia is nvcr.io.

  • Related