Search code examples
linuxwindowsdockerboot2dockerdocker-registry

How to run docker image in windows


I have pulled the phishing frenzy image from repo using this command.

I used this command

docker pull b00stfr3ak/ubuntu-phishingfrenzy

The image is downloaded fine and works I checked using this command.

docker images

Now for running the image I am issuing this command

run -d -p 80:80 b00stfr3ak/ubuntu-phishingfrenzy

but nothing happens , I want to know how I can run a downloaded image from docker in windows and where it is stored as well ?


Solution

  • The command should be docker run, not run

    And the image is stored in your /var/lib/docker/images folder, in the boot2docker VM.