Reputation: 7524
I have docker 2.2.0.4 on Windows 10. I see following message while trying to test it:
>docker pull hello-world
Using default tag: latest
latest: Pulling from library/hello-world
no matching manifest for windows/amd64 10.0.17134 in the manifest list entries
I even did 'Switch to Linux Containers', but that stops docker itself with error.
How to get it working?
I tried with 2.2.0.5 too, but still I face issues. I have posted it here too.
Upvotes: 1
Views: 2206
Reputation: 3480
Try running with the Linux platform as an option
docker pull --platform linux
OR
Enable the experimental feature in Docker Daemon
Upvotes: 2