Skip to content

Instantly share code, notes, and snippets.

@AaronNGray
Created February 10, 2021 12:28
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save AaronNGray/4cbfa25db0633fc516a68f8c163eb60b to your computer and use it in GitHub Desktop.
Save AaronNGray/4cbfa25db0633fc516a68f8c163eb60b to your computer and use it in GitHub Desktop.
Storm version 1.2.3 Docker Compose Container

Docker yaml script for Zookeeper, Storm v1.2.3 nimbus, supervisor, and UI.

docker-compose -f storm-1.2.3.yaml pull
docker-compose -f storm-1.2.3.yaml start
docker-compose -f storm-1.2.3.yaml stop
version: '3.2'
services:
zookeeper:
image: zookeeper
container_name: zookeeper
restart: always
nimbus:
image: storm:1.2.3
container_name: nimbus
command: storm nimbus
depends_on:
- zookeeper
links:
- zookeeper
restart: always
ports:
- 6627:6627
supervisor:
image: storm:1.2.3
container_name: supervisor
command: storm supervisor
depends_on:
- nimbus
- zookeeper
links:
- nimbus
- zookeeper
restart: always
ui:
image: storm:1.2.3
container_name: ui
command: storm ui
depends_on:
- nimbus
- zookeeper
- supervisor
links:
- nimbus
- zookeeper
- supervisor
restart: always
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment