Skip to content

Latest commit

 

History

History
34 lines (23 loc) · 1.05 KB

README.md

File metadata and controls

34 lines (23 loc) · 1.05 KB

Build Status

apache-storm-dockerfile

apache-storm-dockerfile is a dockerfile to build fmantuano/apache-storm Docker image.

fmantuano/apache-storm is an all-in-one Apache Storm image that allows you to run a container with:

  • Zookeeper
  • Nimbus
  • Supervisor
  • Storm UI on port 8080
  • Storm logviewer on port 8000

To use it, create a new instance as usual:

$ sudo docker run --name storm -p 8000:8000 -d fmantuano/apache-storm

Once the docker instance is created, you can control it by running:

$ sudo docker start storm

$ sudo docker stop storm

To exec an interactive shell:

$ sudo docker exec -ti storm /bin/bash