2

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 ?

Johnny
  • 1,743
  • 2
  • 10
  • 12

1 Answers1

1

The command should be docker run, not run

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

Community
  • 1
  • 1
VonC
  • 1,262,500
  • 529
  • 4,410
  • 5,250