Skip to content

Latest commit

 

History

History
34 lines (21 loc) · 1.02 KB

README.md

File metadata and controls

34 lines (21 loc) · 1.02 KB

docker-heartbleed

Dockerfile to install and run heartbleed.

Usage:

  1. Install docker

  2. Build heartbleed image once:

docker build -t <yourname>/heartbleed github.com/kasimon/docker-heartbleed
  1. Run Heartbleed from image:
$ docker run --rm <yourname>/heartbleed github.com:443
2014/04/09 10:37:28 github.com:443 - SAFE
  1. (optional) Create alias:
$ alias heartbleed="docker run --rm <yourname>/heartbleed"
$ heartbleed github.com:443
2014/04/09 10:37:28 github.com:443 - SAFE
  1. (optional) Publish image in docker index. After publishing you can skip steps 2 and 3 on different nodes:
$  docker push <yourname>/heartbleed

There also exists another dockerized version of heartbleed based on ubuntu (mazzolino/heartbleed-docker) on the docker index.