Skip to content

A dockerized image of Apache Storm (Zookeeper, Nimbus, Supervisor, Ui, Logviewer.)

License

Notifications You must be signed in to change notification settings

fedelemantuano/apache-storm-dockerfile

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

20 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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