/apache-storm-dockerfile

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

Primary LanguageDockerfileApache License 2.0Apache-2.0

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