From bd80606e7a03d54354e2ed2ca55f7ec8fab981c2 Mon Sep 17 00:00:00 2001 From: Elisey Zanko Date: Tue, 24 May 2016 23:47:21 +0500 Subject: [PATCH] Refer to own Zookeeper image * Removed obsolete line --- storm/content.md | 4 +--- storm/docker-compose.yml | 2 +- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/storm/content.md b/storm/content.md index c3f5159dc..0cf78693c 100644 --- a/storm/content.md +++ b/storm/content.md @@ -8,8 +8,6 @@ Apache Storm is a distributed computation framework written predominantly in the # 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 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. - $ 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. diff --git a/storm/docker-compose.yml b/storm/docker-compose.yml index b75fc1036..104849503 100644 --- a/storm/docker-compose.yml +++ b/storm/docker-compose.yml @@ -1,7 +1,7 @@ version: '2' services: zookeeper: - image: jplock/zookeeper:3.4.8 + image: 31z4/zookeeper:3.4.8 restart: always nimbus: