You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@griffin.apache.org by gu...@apache.org on 2018/08/30 07:29:01 UTC

incubator-griffin git commit: update docker image source and docker compose file

Repository: incubator-griffin
Updated Branches:
  refs/heads/master 75b426fab -> 11ff412a5


update docker image source and docker compose file

we've transferred the docker image to docker hub of apachegriffin

Author: Lionel Liu <bh...@163.com>

Closes #403 from bhlx3lyx7/docker-update.


Project: http://git-wip-us.apache.org/repos/asf/incubator-griffin/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-griffin/commit/11ff412a
Tree: http://git-wip-us.apache.org/repos/asf/incubator-griffin/tree/11ff412a
Diff: http://git-wip-us.apache.org/repos/asf/incubator-griffin/diff/11ff412a

Branch: refs/heads/master
Commit: 11ff412a58a5dd006fccf9d29517549422c2c68e
Parents: 75b426f
Author: Lionel Liu <bh...@163.com>
Authored: Thu Aug 30 15:28:55 2018 +0800
Committer: William Guo <gu...@apache.org>
Committed: Thu Aug 30 15:28:55 2018 +0800

----------------------------------------------------------------------
 .../docker/compose/docker-compose-batch.yml       |  4 ++--
 .../docker/compose/docker-compose-streaming.yml   |  6 +++---
 griffin-doc/docker/griffin-docker-guide.md        | 18 +++++++++---------
 3 files changed, 14 insertions(+), 14 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-griffin/blob/11ff412a/griffin-doc/docker/compose/docker-compose-batch.yml
----------------------------------------------------------------------
diff --git a/griffin-doc/docker/compose/docker-compose-batch.yml b/griffin-doc/docker/compose/docker-compose-batch.yml
index 9b247f2..592be52 100644
--- a/griffin-doc/docker/compose/docker-compose-batch.yml
+++ b/griffin-doc/docker/compose/docker-compose-batch.yml
@@ -16,7 +16,7 @@
 #under the License.
 
 griffin:
-  image: bhlx3lyx7/griffin_spark2:0.2.0
+  image: apachegriffin/griffin_spark2:0.3.0
   hostname: griffin
   links:
     - es
@@ -37,7 +37,7 @@ griffin:
   container_name: griffin
 
 es:
-  image: bhlx3lyx7/elasticsearch
+  image: apachegriffin/elasticsearch
   hostname: es
   ports:
     - 39200:9200

http://git-wip-us.apache.org/repos/asf/incubator-griffin/blob/11ff412a/griffin-doc/docker/compose/docker-compose-streaming.yml
----------------------------------------------------------------------
diff --git a/griffin-doc/docker/compose/docker-compose-streaming.yml b/griffin-doc/docker/compose/docker-compose-streaming.yml
index 44759e0..e00a8c2 100644
--- a/griffin-doc/docker/compose/docker-compose-streaming.yml
+++ b/griffin-doc/docker/compose/docker-compose-streaming.yml
@@ -16,7 +16,7 @@
 #under the License.
 
 griffin:
-  image: bhlx3lyx7/griffin_spark2:0.2.0
+  image: apachegriffin/griffin_spark2:0.3.0
   hostname: griffin
   links:
     - es
@@ -41,7 +41,7 @@ griffin:
   container_name: griffin
 
 es:
-  image: bhlx3lyx7/elasticsearch
+  image: apachegriffin/elasticsearch
   hostname: es
   ports:
     - 39200:9200
@@ -57,7 +57,7 @@ zk:
   restart: always
 
 kafka:
-  image: bhlx3lyx7/kafka
+  image: apachegriffin/kafka
   hostname: kafka
   ports:
     - 39092:9092

http://git-wip-us.apache.org/repos/asf/incubator-griffin/blob/11ff412a/griffin-doc/docker/griffin-docker-guide.md
----------------------------------------------------------------------
diff --git a/griffin-doc/docker/griffin-docker-guide.md b/griffin-doc/docker/griffin-docker-guide.md
index ea6fb72..c9fe150 100644
--- a/griffin-doc/docker/griffin-docker-guide.md
+++ b/griffin-doc/docker/griffin-docker-guide.md
@@ -35,22 +35,22 @@ Griffin docker images are pre-built on docker hub, users can pull them to try gr
     
 3. Pull griffin pre-built docker images, but if you access docker repository easily(NOT in China).
     ```
-    docker pull bhlx3lyx7/griffin_spark2:0.2.1
-    docker pull bhlx3lyx7/elasticsearch
-    docker pull bhlx3lyx7/kafka
+    docker pull apachegriffin/griffin_spark2:0.3.0
+    docker pull apachegriffin/elasticsearch
+    docker pull apachegriffin/kafka
     docker pull zookeeper:3.5
     ```
    For Chinese users, you can pull the images from the following mirrors.
     ```
-    docker pull registry.docker-cn.com/bhlx3lyx7/griffin_spark2:0.2.1
-    docker pull registry.docker-cn.com/bhlx3lyx7/elasticsearch
-    docker pull registry.docker-cn.com/bhlx3lyx7/kafka
+    docker pull registry.docker-cn.com/apachegriffin/griffin_spark2:0.3.0
+    docker pull registry.docker-cn.com/apachegriffin/elasticsearch
+    docker pull registry.docker-cn.com/apachegriffin/kafka
     docker pull registry.docker-cn.com/zookeeper:3.5
     ```
    The docker images are the griffin environment images.
-    - `bhlx3lyx7/griffin_spark2`: This image contains mysql, hadoop, hive, spark, livy, griffin service, griffin measure, and some prepared demo data, it works as a single node spark cluster, providing spark engine and griffin service.
-    - `bhlx3lyx7/elasticsearch`: This image is based on official elasticsearch, adding some configurations to enable cors requests, to provide elasticsearch service for metrics persist.
-    - `bhlx3lyx7/kafka`: This image contains kafka 0.8, and some demo streaming data, to provide streaming data source in streaming mode.
+    - `apachegriffin/griffin_spark2`: This image contains mysql, hadoop, hive, spark, livy, griffin service, griffin measure, and some prepared demo data, it works as a single node spark cluster, providing spark engine and griffin service.
+    - `apachegriffin/elasticsearch`: This image is based on official elasticsearch, adding some configurations to enable cors requests, to provide elasticsearch service for metrics persist.
+    - `apachegriffin/kafka`: This image contains kafka 0.8, and some demo streaming data, to provide streaming data source in streaming mode.
     - `zookeeper:3.5`: This image is official zookeeper, to provide zookeeper service in streaming mode.
 
 ### How to use griffin docker images in batch mode