Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Docker On Windows10: No matching manifest for unknown?

Tags:

docker

C:\Users\mites>docker pull busybox
Using default tag: latest
latest: Pulling from library/busybox
no matching manifest for unknown in the manifest list entries

How to solve this ? it occours up on every pull command.

like image 526
MrWhoztheBoss Avatar asked Aug 03 '18 10:08

MrWhoztheBoss


2 Answers

I was running my app on Windows 10 Pro, Docker CE, windows containers when I got this error.

I switched to using linux containers and it resolved this issue for me.

Note: I was using python, reddis in this scenario for my app.

Hope this helps someone.

like image 121
Ram Avatar answered Oct 27 '22 14:10

Ram


I had the same problem on my Windows 10 Pro. While checking the docker logs I found more explanatory log entries:

[09:32:42.958][WindowsDaemon  ][Info   ] debug: a Windows version 10.0.17763-based image is incompatible with a 10.0.17134 host
[09:32:42.958][WindowsDaemon  ][Info   ] debug: no matching manifest for unknown in the manifest list entries

The solution was to update my Windows 10 Pro installation to a later version. After that, I was able to pull the image from the repo.

like image 25
Jeroen T. Avatar answered Oct 27 '22 13:10

Jeroen T.