How to Solve Error Message no matching manifest for windows/amd64 10.0.18363 in the manifest list entries when executing Docker command

Posted on

Introduction

This is another article which is going to show how to solve an error message appear. The error message exist in the title of the article. It is ‘no matching manifest for windows/amd64 10.0.18363 in the manifest list entries’. The following is the process of the docker command execution which ends in the appearance of an error message :

C:\Users\Administrator>docker pull registry
Using default tag: latest
latest: Pulling from library/registry
no matching manifest for windows/amd64 10.0.18363 in the manifest list entries

C:\Users\Administrator>

The above command is an attempt to start running a docker local private registry repository. The article itself exist in this link with the title of ‘How to Run Local Docker Repository in Microsoft Windows’. But apparently, when pulling the registry image, the process ends in a failure.

Solution

After searching it through google for an answer, there is an answer in one of the stackoverflow.com article. The solution or the answer for solving the problem is in the following sequence :

  1. Just run the Docker Desktop application. If the execution is a success, it will present the following display :

    How to Solve Error Message no matching manifest for windows/amd64 10.0.18363 in the manifest list entries when executing Docker command
    How to Solve Error Message no matching manifest for windows/amd64 10.0.18363 in the manifest list entries when executing Docker command
  2. Access the Settings menu, the following display will appear :

    How to Solve Error Message no matching manifest for windows/amd64 10.0.18363 in the manifest list entries when executing Docker command
    How to Solve Error Message no matching manifest for windows/amd64 10.0.18363 in the manifest list entries when executing Docker command
  3. Go to the Docker Engine menu. So, the following image will appear :

    How to Solve Error Message no matching manifest for windows/amd64 10.0.18363 in the manifest list entries when executing Docker command
    How to Solve Error Message no matching manifest for windows/amd64 10.0.18363 in the manifest list entries when executing Docker command
  4. Just change the value of the “Environmental” paramater from “false” to “true” as in the following appearance :

    How to Solve Error Message no matching manifest for windows/amd64 10.0.18363 in the manifest list entries when executing Docker command
    How to Solve Error Message no matching manifest for windows/amd64 10.0.18363 in the manifest list entries when executing Docker command
  5. Click the Apply & Restart button and the following image will appear :

    How to Solve Error Message no matching manifest for windows/amd64 10.0.18363 in the manifest list entries when executing Docker command
    How to Solve Error Message no matching manifest for windows/amd64 10.0.18363 in the manifest list entries when executing Docker command
  6. After that, just execute the above command once more as follow :

    C:\Users\Administrator>docker pull registry
    Using default tag: latest
    latest: Pulling from library/registry
    79e9f2f55bf5: Pull complete 0d96da54f60b: Pull complete 5b27040df4a2: Pull complete e2ead8259a04: Pull complete 3790aef225b9: Pull complete Digest: sha256:169211e20e2f2d5d115674681eb79d21a217b296b43374b8e39f97fcf866b375
    Status: Downloaded newer image for registry:latest
    docker.io/library/registry:latest
    
    C:\Users\Administrator>
    

Leave a Reply