https://github.com/fedelemantuano/apache-storm-dockerfile
A dockerized image of Apache Storm (Zookeeper, Nimbus, Supervisor, Ui, Logviewer.)
https://github.com/fedelemantuano/apache-storm-dockerfile
apache apache-storm docker-container docker-image dockerfile nimbus storm storm-dockerfile supervisor zookeeper
Last synced: about 1 year ago
JSON representation
A dockerized image of Apache Storm (Zookeeper, Nimbus, Supervisor, Ui, Logviewer.)
- Host: GitHub
- URL: https://github.com/fedelemantuano/apache-storm-dockerfile
- Owner: fedelemantuano
- License: apache-2.0
- Created: 2016-07-28T06:38:51.000Z (almost 10 years ago)
- Default Branch: develop
- Last Pushed: 2018-08-16T21:35:56.000Z (almost 8 years ago)
- Last Synced: 2025-02-28T13:18:31.177Z (over 1 year ago)
- Topics: apache, apache-storm, docker-container, docker-image, dockerfile, nimbus, storm, storm-dockerfile, supervisor, zookeeper
- Language: Dockerfile
- Homepage: http://storm.apache.org/
- Size: 25.4 KB
- Stars: 6
- Watchers: 3
- Forks: 7
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
[](https://travis-ci.org/fedelemantuano/apache-storm-dockerfile)
[](https://microbadger.com/images/fmantuano/apache-storm "Get your own image badge on microbadger.com")
# apache-storm-dockerfile
**apache-storm-dockerfile** is a dockerfile to build [fmantuano/apache-storm](https://hub.docker.com/r/fmantuano/apache-storm/) Docker image.
**fmantuano/apache-storm** is an all-in-one [Apache Storm](http://storm.apache.org/) 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
```