Parcourir la source

Refer to own Zookeeper image

* Removed obsolete line
Elisey Zanko il y a 9 ans
Parent
commit
bd80606e7a
2 fichiers modifiés avec 2 ajouts et 4 suppressions
  1. 1 3
      storm/content.md
  2. 1 1
      storm/docker-compose.yml

+ 1 - 3
storm/content.md

@@ -8,8 +8,6 @@ Apache Storm is a distributed computation framework written predominantly in the
 
 
 # How to use this image
 # How to use this image
 
 
-This image entry point is a [Storm command line client](http://storm.apache.org/releases/1.0.0/Command-line-client.html). See couple of usage examples below.
-
 ## Running topologies in local mode
 ## Running topologies in local mode
 
 
 Assuming you have `storm-starter-topologies-1.0.1.jar` in the current directory.
 Assuming you have `storm-starter-topologies-1.0.1.jar` in the current directory.
@@ -20,7 +18,7 @@ Assuming you have `storm-starter-topologies-1.0.1.jar` in the current directory.
 
 
 1.	[Apache Zookeeper](https://zookeeper.apache.org/) is a must for running a Storm cluster. Start it first. Since the Zookeeper "fails fast" it's better to always restart it.
 1.	[Apache Zookeeper](https://zookeeper.apache.org/) is a must for running a Storm cluster. Start it first. Since the Zookeeper "fails fast" it's better to always restart it.
 
 
-		$ docker run -d --restart always --name zookeeper jplock/zookeeper:3.4.8
+		$ docker run -d --restart always --name zookeeper 31z4/zookeeper:3.4.8
 
 
 2.	The Nimbus daemon has to be connected with the Zookeeper. It's also a "fail fast" system.
 2.	The Nimbus daemon has to be connected with the Zookeeper. It's also a "fail fast" system.
 
 

+ 1 - 1
storm/docker-compose.yml

@@ -1,7 +1,7 @@
 version: '2'
 version: '2'
 services:
 services:
     zookeeper:
     zookeeper:
-        image: jplock/zookeeper:3.4.8
+        image: 31z4/zookeeper:3.4.8
         restart: always
         restart: always
 
 
     nimbus:
     nimbus: