Skip to content

Commit

Permalink
added fig configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
wurstmeister committed Jul 12, 2014
1 parent 04c1e18 commit d1756b3
Show file tree
Hide file tree
Showing 4 changed files with 32 additions and 23 deletions.
8 changes: 6 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,19 @@ Dockerfiles for building a storm cluster. Inspired by [https://github.com/ptgoet

The images are available directly from [https://index.docker.io](https://index.docker.io)

##Pre-Requisites

- install fig [http:https://orchardup.github.io/fig/install.html](http:https://orchardup.github.io/fig/install.html)

##Usage

Start a cluser:

- ```start-storm.sh```
- ```fig up```

Destroy a cluster:

- ```destroy-storm.sh```
- ```fig stop```

##Building

Expand Down
6 changes: 0 additions & 6 deletions destroy-storm.sh

This file was deleted.

26 changes: 26 additions & 0 deletions fig.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
zookeeper:
image: jplock/zookeeper
ports:
- "49181:2181"
nimbus:
image: wurstmeister/storm-nimbus:0.9.2
ports:
- "49773:3773"
- "49772:3772"
- "49627:6627"
links:
- zookeeper:zk
supervisor:
image: wurstmeister/storm-supervisor:0.9.2
ports:
- "49000:8000"
links:
- nimbus:nimbus
- zookeeper:zk
ui:
image: wurstmeister/storm-ui:0.9.2
ports:
- "49080:8080"
links:
- nimbus:nimbus
- zookeeper:zk
15 changes: 0 additions & 15 deletions start-storm.sh

This file was deleted.

0 comments on commit d1756b3

Please sign in to comment.