Back

Explore Courses Blog Tutorials Interview Questions
0 votes
3 views
in DevOps and Agile by (2.3k points)

while using docker for windows I tried to get a PHP image using docker pull command like so:

$ docker pull php

But I got this message:

Using default tag: latest
latest: Pulling from library/php no matching manifest for windows/amd64 
        in the manifest list entries

Is there any way to solve this?

1 Answer

0 votes
by (6.9k points)

I've been having the same issue when i use docker for windows on windows 10. My work around for this was to run the docker daemon in experimental mode.You can do so by following these steps:

  1. Open Docker in windows
  2. click on Settings
  3. click on daemon
  4. go to advanced
  5. put the value "experimental": true
  6. then restart docker

With this you should be able to pull the PHP image.


To get more acquainted with docker try out docker training course.

Browse Categories

...