You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@rocketmq.apache.org by st...@apache.org on 2021/09/12 15:02:18 UTC

[rocketmq-dashboard] branch master updated: Update README.md (#20)

This is an automated email from the ASF dual-hosted git repository.

styletang pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/rocketmq-dashboard.git


The following commit(s) were added to refs/heads/master by this push:
     new 3fd2223  Update README.md (#20)
3fd2223 is described below

commit 3fd2223cb5d223e563947b5673ad8cc0c57230d6
Author: X.C. Wong <se...@qq.com>
AuthorDate: Sun Sep 12 23:02:13 2021 +0800

    Update README.md (#20)
    
    * Update README.md
    
    typo
    
    * Update docker CMDs
    
    1. Delete `docker run` CMD without tag;
    2. Add newest tag (2.0.0) to `docker pull` CMD;
---
 README.md | 10 ++--------
 1 file changed, 2 insertions(+), 8 deletions(-)

diff --git a/README.md b/README.md
index 6511083..174ba90 100644
--- a/README.md
+++ b/README.md
@@ -16,7 +16,7 @@ mvn clean package -Dmaven.test.skip=true docker:build
 or
 
 ```
-docker pull apacherocketmq/rocketmq-console
+docker pull apacherocketmq/rocketmq-console:2.0.0
 ```
 
 > currently the newest available docker image is apacherocketmq/rocketmq-console:2.0.0
@@ -25,13 +25,7 @@ docker pull apacherocketmq/rocketmq-console
 * run it (change namesvrAddr and port yourself)
 
 ```
-docker run -e "JAVA_OPTS=-Drocketmq.namesrv.addr=127.0.0.1:9876 -Dcom.rocketmq.sendMessageWithVIPChannel=false" -p 8080:8080 -t apacherocketmq/rocketmq-console-ng
-```
-
-or 
-
-```
-docker run -e "JAVA_OPTS=-Drocketmq.namesrv.addr=127.0.0.1:9876 -Dcom.rocketmq.sendMessageWithVIPChannel=false" -p 8080:8080 -t apacherocketmq/rocketmq-console-ng:2.0.0
+docker run -e "JAVA_OPTS=-Drocketmq.namesrv.addr=127.0.0.1:9876 -Dcom.rocketmq.sendMessageWithVIPChannel=false" -p 8080:8080 -t apacherocketmq/rocketmq-console:2.0.0
 ```
 
 ### Without Docker