我在Windows上使用Docker,当我试图用这个命令拉一个PHP图像时
$ docker pull php
我收到了这样的信息:
Using default tag: latest
latest: Pulling from library/php no matching manifest for windows/amd64
in the manifest list entries
我该如何解决这个问题?
我在Windows上使用Docker,当我试图用这个命令拉一个PHP图像时
$ docker pull php
我收到了这样的信息:
Using default tag: latest
latest: Pulling from library/php no matching manifest for windows/amd64
in the manifest list entries
我该如何解决这个问题?
当前回答
这可能不仅仅发生在windows容器上!
现在所有的Node.Js docker映像都是不可拉的。总是检查你要拉之前的图像。
相关Github-Issue
其他回答
这可能不仅仅发生在windows容器上!
现在所有的Node.Js docker映像都是不可拉的。总是检查你要拉之前的图像。
相关Github-Issue
我在Azure DevOps管道中得到了这个错误。
Step 1/7 : FROM nginx:alpine
alpine: Pulling from library/nginx
no matching manifest for windows/amd64 10.0.14393 in the manifest list entries
##[error]C:\Program Files\Docker\docker.exe failed with return code: 1
##[section]Finishing: Build an image
问题是我选择了托管的VS2017而不是托管的Ubuntu。在进行如下更改后,构建成功。
希望能有所帮助。
在码头工人:
进入设置 转到Docker引擎 将experimental改为true 按应用并重新启动
.
以我为例,我使用的Windows操作系统版本不支持我试图拉出的标签。利用一个旧的标签让我可以让它工作。
具体地说:
Docker pull McR.microsoft.com/windows/nanoserver:1903错误
Docker拉McR.microsoft.com/windows/nanoserver:1803-amd64工作
在我的情况下,我必须先更新窗口,然后问题就消失了。