You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tubemq.apache.org by go...@apache.org on 2020/07/28 06:16:01 UTC

[incubator-tubemq-website] branch master updated: [TUBEMQ-303]docker script should expose 8123 port (#45)

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

gosonzhang pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-tubemq-website.git


The following commit(s) were added to refs/heads/master by this push:
     new fc681a1  [TUBEMQ-303]docker script should expose 8123 port (#45)
fc681a1 is described below

commit fc681a1ef86f200536a74d0726d73ea82144fa94
Author: pierre xiong <xi...@hotmail.com>
AuthorDate: Tue Jul 28 14:15:54 2020 +0800

    [TUBEMQ-303]docker script should expose 8123 port (#45)
---
 docs/en-us/quick_start.md | 2 +-
 docs/zh-cn/quick_start.md | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/docs/en-us/quick_start.md b/docs/en-us/quick_start.md
index 7e0b2a5..9fa218f 100644
--- a/docs/en-us/quick_start.md
+++ b/docs/en-us/quick_start.md
@@ -52,7 +52,7 @@ This command will generate the Java source files from the `protoc` files, the ge
 ### Deploy TubeMQ Standalone
 Standalone mode starts zookeeper/master/broker services in one docker container:
 ```
-docker run -p 8080:8080 -p 8000:8000 --name tubemq -d apachetubemq/tubemq-all:latest
+docker run -p 8080:8080 -p 8000:8000 -p 8123:8123 --name tubemq -d apachetubemq/tubemq-all:latest
 ```
 Afater container is running, you can access ` http://127.0.0.1:8080`, and reference to next `Quick Start` chapter for experience.
 
diff --git a/docs/zh-cn/quick_start.md b/docs/zh-cn/quick_start.md
index 03f68f1..bd200a1 100644
--- a/docs/zh-cn/quick_start.md
+++ b/docs/zh-cn/quick_start.md
@@ -46,7 +46,7 @@ mvn compile
 ### 部署TubeMQ Standalone
 Standalone模式可以在一个容器中启动zookeeper/master/broker服务:
 ```
-docker run -p 8080:8080 -p 8000:8000 --name tubemq -d apachetubemq/tubemq-all:latest
+docker run -p 8080:8080 -p 8000:8000 -p 8123:8123 --name tubemq -d apachetubemq/tubemq-all:latest
 ```
 容器拉起后,可在浏览器访问` http://127.0.0.1:8080`,然后参考下面`快速使用`部分开始使用。