This is an automated email from the ASF dual-hosted git repository.
liyang pushed a commit to branch doc5.0
in repository https://gitbox.apache.org/repos/asf/kylin.git
The following commit(s) were added to refs/heads/doc5.0 by this push:
new 1d4f9bb72a KYLIN-5970 Update kylin5 standalone docker doc
1d4f9bb72a is described below
commit 1d4f9bb72a9ada3a1719a561d72dcdece7cc3dff
Author: Yinghao Lin <[email protected]>
AuthorDate: Sat Sep 14 16:59:50 2024 +0800
KYLIN-5970 Update kylin5 standalone docker doc
---
website/docs/quickstart/intro.md | 15 +++++++++++++--
1 file changed, 13 insertions(+), 2 deletions(-)
diff --git a/website/docs/quickstart/intro.md b/website/docs/quickstart/intro.md
index e8fac38348..e3a0e62d6c 100644
--- a/website/docs/quickstart/intro.md
+++ b/website/docs/quickstart/intro.md
@@ -18,10 +18,21 @@ In this guide, we will explain how to quickly install and
start Kylin 5. Before
## <span id="docker">Play Kylin in docker</span>
-To explore new features in Kylin 5 on a laptop, we recommend pulling the
Docker image and checking the [Apache Kylin Standalone Image on Docker
Hub](https://hub.docker.com/r/apachekylin/apache-kylin-standalone).
+To explore new features in Kylin 5 on a laptop, we recommend pulling the
Docker image and checking the [Apache Kylin Standalone Image on Docker
Hub](https://hub.docker.com/r/apachekylin/apache-kylin-standalone) (For amd64
platform).
```shell
-docker pull apachekylin/apache-kylin-standalone:5.0.0-GA
+docker run -d \
+ --name Kylin5-Machine \
+ --hostname localhost \
+ -e TZ=UTC \
+ -m 10G \
+ -p 7070:7070 \
+ -p 8088:8088 \
+ -p 9870:9870 \
+ -p 8032:8032 \
+ -p 8042:8042 \
+ -p 2181:2181 \
+ apachekylin/apache-kylin-standalone:5.0.0-GA
```
## <span id="install">Install Kylin in Single Node</span>