Docker no matching manifest for windows/amd64 in the manifest list entries
Master System Design with Codemia
Enhance your system design skills with over 120 practice problems, detailed solutions, and hands-on exercises.
Docker is a potent tool in the developer's toolkit, allowing for easy deployment and management of applications in isolated environments. However, like any complex system, it can occasionally produce errors that are not immediately intuitive. One such error is "no matching manifest for windows/amd64 in the manifest list entries." Understanding this error requires some insight into Docker architectures and manifests. This article delves into how Docker manages images for different platforms, why this error might occur, and how you can resolve it.
Understanding Docker Images and Manifests
Docker images are templates constructed to run applications in isolated environments known as containers. Each image is specific to a particular operating system and architecture, and these details are captured in a manifest list entry. The manifest includes multiple image references, supporting various architectures like linux/amd64, linux/arm64, windows/amd64, etc.
A manifest list is a higher-level image entry that points to different images configured for different architectures and platforms. When you pull an image, Docker matches your host's OS and architecture from the manifest list to download the appropriate image. If Docker is unable to find a suitable image, it will raise the error: "no matching manifest for windows/amd64 in the manifest list entries."
Common Causes of "No Matching Manifest" Error
1. Image Not Built for Windows
Docker images are typically built and maintained by their original developers. If an image is not built for the windows/amd64 platform, Docker will be unable to find a match for a Windows host. For instance, Linux-based images are prevalent, but not all have their Windows counterparts.
2. Platform-Specific Restrictions or Missing Manifests
Sometimes, regardless of the presence of an image for a specific architecture, the manifest list might not be fully updated or maintained. This can result in missing manifest records for particular architectures or platforms, such as windows/amd64.
3. Incorrect Image Tags
Using the wrong image tag can also lead to a mismatch. If you specify an image version that doesn’t include windows/amd64 support, this error will occur. Always ensure you are using the correct tags that support the architecture you are targeting.
Resolving the "No Matching Manifest" Error
Use Platform-Specific Tags
When pulling an image, you can explicitly include a tag that is known to have a manifest for your platform. Checking the Docker Hub or the repository’s documentation can help to identify the correct tags to use.
Inspect the Image Manifest
You can inspect the manifest of an image to see which platforms it supports. The docker manifest inspect command can be used on your host machine.
This command will show you a list of supported architectures and you can verify if windows/amd64 is included.
Build Your Own Image
If a public image does not support Windows, you can consider building your own image by modifying the Dockerfile to include necessary changes and compile it for Windows. Here’s a basic outline of what a Dockerfile for Windows might include:
Then, build the image:
Use Cross-Platform Images
Some Docker images are configured to support multiple platforms inherently. For these situations, Docker Desktop's experimental features, such as enabling the Buildx plugin, let you build multi-platform images.
Summary Table
| Problem | Cause | Resolution |
No matching manifest for windows/amd64 | Image not built for Windows | Use a platform-specific tag or build a custom Windows-compatible image |
| Platform-specific restrictions | Missing windows/amd64 in manifest | Inspect manifest with docker manifest inspect
Choose a Docker image with multi-platform support |
| Incorrect image tags | Using a wrong tag for architecture | Verify and use the correct tag that provides Windows support |
Additional Considerations
- Stay Updated: Frequently, the Docker ecosystem and image repositories update their available images and manifests. Always ensure you’re using the latest stable release of Docker and its components.
- Community and Documentation: Leverage the Docker community and official documentation as they often provide insights and resolutions for common platform-specific issues.
By understanding Docker's architecture-specific requirements and how manifests support them, you can effectively address and resolve platform-related image issues, like the "no matching manifest for windows/amd64 in the manifest list entries" error.

