Skip to content
Advertisement

How to run docker image in windows [closed]

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 ?

Advertisement

Answer

The command should be docker run, not run

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

User contributions licensed under: CC BY-SA
9 People found this is helpful
Advertisement