Docker output shows "Unknown blob"

I am trying to display a microsoft / aspnet image . He tries to download something and shows the progress. But then it shows an error - "Unknown blob" .

enter image description here

How can i solve this?

PS I have a client and server docker v1.12.2

+8
windows docker docker-machine
source share
4 answers

Your version of docker is 1.12.2, which does not support Windows Containers, which means that you are using Linux Containers in a virtual machine. And you pull an image based on a Windows container to either upgrade dockers to beta version 1.13.0, which supports Windows Containers, and pull out that image, or find an image based on Linux.Net.

To find out how to switch to Windows Containers, see this GIF

+8
source share

You must download and install the latest docker from here.

and switch to the Windows container. and switch to the windows container.

more details

+5
source share

You are trying to upload a Windows image to a Linux host. I assume that you are using a host docker in a Linux virtual machine.

If you have access to Windows Server 2016, use this.

+1
source share

to try
docker pull microsoft/aspnetcore

Microsoft has changed the names of its Docker Hub Repos in recent months, so finding the right ones is not so easy.

0
source share

All Articles