我刚刚开始使用 docker。我正在遵循此处指定的说明 https://docs.docker.com/windows/step_one/
我在 Windows 10 上安装了 docker (1.10.2) 并运行了 docker run hello-world
。但是,我收到了一个身份验证错误,而教程没有提到任何关于它的内容。
这是我收到的消息。
$ docker run hello-world
Unable to find image 'hello-world:latest' locally
docker: Error response from daemon: Authentication is required: Get https://registry-1.docker.io/v2/library/hello-world/manifests/latest: unauthorized: incorrect username or password.
See 'C:\Program Files\Docker Toolbox\docker.exe run --help'.
我在这里搜索了 google & ,但找不到与此错误消息类似的任何内容。
谢谢!
原文由 Vishwa 发布,翻译遵循 CC BY-SA 4.0 许可协议
请在第一次运行任何其他 docker 命令时运行
docker login
。