Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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: 11 days 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 (over 8 years ago)
- Default Branch: develop
- Last Pushed: 2018-08-16T21:35:56.000Z (about 6 years ago)
- Last Synced: 2024-10-11T03:21:54.897Z (27 days 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
[![Build Status](https://travis-ci.org/fedelemantuano/apache-storm-dockerfile.svg?branch=master)](https://travis-ci.org/fedelemantuano/apache-storm-dockerfile)
[![](https://images.microbadger.com/badges/image/fmantuano/apache-storm.svg)](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 8000To 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
```