This is an automated email from the ASF dual-hosted git repository.
dengliming pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/shenyu-website.git
The following commit(s) were added to refs/heads/main by this push:
new 79126432b21 docs: remove all `>` before every commands (#852)
79126432b21 is described below
commit 79126432b2169ebb76f960914b81cac0cd4159c9
Author: Bird <[email protected]>
AuthorDate: Sun Jan 29 11:38:36 2023 +0800
docs: remove all `>` before every commands (#852)
Signed-off-by: Bird <[email protected]>
---
blog/Start-SourceCode-Analysis-Start-Demo.md | 6 ++---
docs/deployment/deployment-docker.md | 12 +++++-----
docs/deployment/deployment-local.md | 6 ++---
.../Start-SourceCode-Analysis-Start-Demo.md | 6 ++---
.../current/1-code-suggestions.md | 1 -
.../current/deployment/deployment-docker.md | 12 +++++-----
.../current/deployment/deployment-local.md | 6 ++---
.../users-guide/soul-set-up.md | 24 ++++++++++----------
.../version-2.4.0/deployment/deployment-docker.md | 8 +++----
.../version-2.4.0/deployment/deployment-local.md | 6 ++---
.../version-2.4.1/deployment/deployment-docker.md | 8 +++----
.../version-2.4.1/deployment/deployment-local.md | 6 ++---
.../version-2.4.2/deployment/deployment-docker.md | 14 ++++++------
.../version-2.4.2/deployment/deployment-local.md | 6 ++---
.../user-guide/observability/observability.md | 6 ++---
.../version-2.4.3/deployment/deployment-docker.md | 8 +++----
.../version-2.4.3/deployment/deployment-local.md | 6 ++---
.../version-2.5.0/deployment/deployment-docker.md | 8 +++----
.../version-2.5.0/deployment/deployment-local.md | 6 ++---
.../users-guide/soul-set-up.md | 26 +++++++++++-----------
.../version-2.4.0/deployment/deployment-docker.md | 12 +++++-----
.../version-2.4.0/deployment/deployment-local.md | 6 ++---
.../version-2.4.1/deployment/deployment-docker.md | 12 +++++-----
.../version-2.4.1/deployment/deployment-local.md | 6 ++---
.../version-2.4.2/deployment/deployment-docker.md | 18 +++++++--------
.../version-2.4.2/deployment/deployment-local.md | 6 ++---
.../user-guide/observability/observability.md | 6 ++---
.../version-2.4.3/deployment/deployment-docker.md | 12 +++++-----
.../version-2.4.3/deployment/deployment-local.md | 6 ++---
.../version-2.5.0/deployment/deployment-docker.md | 12 +++++-----
.../version-2.5.0/deployment/deployment-local.md | 6 ++---
31 files changed, 141 insertions(+), 142 deletions(-)
diff --git a/blog/Start-SourceCode-Analysis-Start-Demo.md
b/blog/Start-SourceCode-Analysis-Start-Demo.md
index 9f50f933fe6..43f031b0996 100644
--- a/blog/Start-SourceCode-Analysis-Start-Demo.md
+++ b/blog/Start-SourceCode-Analysis-Start-Demo.md
@@ -19,7 +19,7 @@ tags: [Apache ShenYu]
Use Git to clone code
```shell
-> git clone https://github.com/apache/incubator-shenyu.git
+git clone https://github.com/apache/incubator-shenyu.git
```
### Compile code
@@ -27,8 +27,8 @@ Use Git to clone code
Compile with Maven
```shell
-> cd incubator-shenyu
-> mvn clean install -Dmaven.javadoc.skip=true -B -Drat.skip=true
-Djacoco.skip=true -DskipITs -DskipTests
+cd incubator-shenyu
+mvn clean install -Dmaven.javadoc.skip=true -B -Drat.skip=true
-Djacoco.skip=true -DskipITs -DskipTests
```
### Start the gateway service
diff --git a/docs/deployment/deployment-docker.md
b/docs/deployment/deployment-docker.md
index 93f6cae1cd3..02adb228ebd 100644
--- a/docs/deployment/deployment-docker.md
+++ b/docs/deployment/deployment-docker.md
@@ -12,13 +12,13 @@ This article introduces the use of `docker` to deploy the
`Apache ShenYu` gatewa
### Create Docker Network
```
-> docker network create shenyu
+docker network create shenyu
```
### Start Apache ShenYu Admin
```
-> docker pull apache/shenyu-admin:${current.version}
+docker pull apache/shenyu-admin:${current.version}
```
> After version 2.5.1, when `docker run`, we can customize JVM startup
> parameters by adding `-e ADMIN_JVM="xxxx"`
@@ -26,7 +26,7 @@ This article introduces the use of `docker` to deploy the
`Apache ShenYu` gatewa
* use `h2` to store data:
```
-> docker run -d -p 9095:9095 --name shenyu-admin --net shenyu
apache/shenyu-admin:${current.version}
+docker run -d -p 9095:9095 --name shenyu-admin --net shenyu
apache/shenyu-admin:${current.version}
```
* use `MySQL` to store data, follow the [guide
document](./deployment-before.md#mysql) to initialize the database, copy
[mysql-connector.jar](https://repo1.maven.org/maven2/mysql/mysql-connector-java/8.0.29/mysql-connector-java-8.0.29.jar)
to `/$(your_work_dir)/ext-lib`:
@@ -72,13 +72,13 @@ docker run --name shenyu-admin -v
${your_work_dir}/conf:/opt/shenyu-admin/conf -
First, pull the docker image
```shell
-> docker pull apache/shenyu-bootstrap:${current.version}
+docker pull apache/shenyu-bootstrap:${current.version}
```
If you don't need to modify the configuration, just use the command below to
run the application
```shell
-> docker run -d \
+docker run -d \
-p 9195:9195 \
--name shenyu-bootstrap \
--net shenyu \
@@ -91,7 +91,7 @@ If you don't need to modify the configuration, just use the
command below to run
If you need to modify the configuration, copy the configuration from the
Github directory where the bootstrap [configuration
file](https://github.com/apache/shenyu/tree/master/shenyu-bootstrap/src/main/resources)
is located, then recorded it as `$BOOTSTRAP_CONF`. After your modification,
execute the command below to run the application
```shell
-> docker run -d \
+docker run -d \
-p 9195:9195 \
-v $BOOTSTRAP_CONF:/opt/shenyu-bootstrap/conf \
--name shenyu-bootstrap \
diff --git a/docs/deployment/deployment-local.md
b/docs/deployment/deployment-local.md
index 03838e0cbe5..25c5a548693 100644
--- a/docs/deployment/deployment-local.md
+++ b/docs/deployment/deployment-local.md
@@ -21,9 +21,9 @@ This article introduces how to start the `Apache ShenYu`
gateway in the local en
* Download
```
-> git clone https://github.com/apache/shenyu.git
-> cd shenyu
-> mvn clean install -Dmaven.javadoc.skip=true -B -Drat.skip=true
-Djacoco.skip=true -DskipITs -DskipTests
+git clone https://github.com/apache/shenyu.git
+cd shenyu
+mvn clean install -Dmaven.javadoc.skip=true -B -Drat.skip=true
-Djacoco.skip=true -DskipITs -DskipTests
```
* use the development tool to start
`org.apache.shenyu.admin.ShenyuAdminBootstrap`,Visit http://localhost:9095, the
default username and password are: `admin` and `123456` respectively.
diff --git
a/i18n/zh/docusaurus-plugin-content-blog/Start-SourceCode-Analysis-Start-Demo.md
b/i18n/zh/docusaurus-plugin-content-blog/Start-SourceCode-Analysis-Start-Demo.md
index 48a806304ed..91fa5d94337 100644
---
a/i18n/zh/docusaurus-plugin-content-blog/Start-SourceCode-Analysis-Start-Demo.md
+++
b/i18n/zh/docusaurus-plugin-content-blog/Start-SourceCode-Analysis-Start-Demo.md
@@ -19,7 +19,7 @@ tags: [Apache ShenYu]
使用Git拉取代码
```shell
-> git clone https://github.com/apache/incubator-shenyu.git
+git clone https://github.com/apache/incubator-shenyu.git
```
### 编译代码
@@ -27,8 +27,8 @@ tags: [Apache ShenYu]
使用Maven进行编译
```shell
-> cd incubator-shenyu
-> mvn clean install -Dmaven.javadoc.skip=true -B -Drat.skip=true
-Djacoco.skip=true -DskipITs -DskipTests
+cd incubator-shenyu
+mvn clean install -Dmaven.javadoc.skip=true -B -Drat.skip=true
-Djacoco.skip=true -DskipITs -DskipTests
```
### 启动网关服务
diff --git
a/i18n/zh/docusaurus-plugin-content-docs-community/current/1-code-suggestions.md
b/i18n/zh/docusaurus-plugin-content-docs-community/current/1-code-suggestions.md
index b8bf8addfc9..6742dc80f05 100644
---
a/i18n/zh/docusaurus-plugin-content-docs-community/current/1-code-suggestions.md
+++
b/i18n/zh/docusaurus-plugin-content-docs-community/current/1-code-suggestions.md
@@ -218,4 +218,3 @@ try {
* 判断自身对象是否为 Null,但是返回 Optional 包装的,以下是几个代表实例。
目前 : ```return null == a ? Optional.empty() :
Optional.ofNullable(a.getXXX());```
建议 : ```return Optional.ofNullable(a).map(e -> e.getXXX());```
-
\ No newline at end of file
diff --git
a/i18n/zh/docusaurus-plugin-content-docs/current/deployment/deployment-docker.md
b/i18n/zh/docusaurus-plugin-content-docs/current/deployment/deployment-docker.md
index dae27d7c4c9..b57d3462514 100644
---
a/i18n/zh/docusaurus-plugin-content-docs/current/deployment/deployment-docker.md
+++
b/i18n/zh/docusaurus-plugin-content-docs/current/deployment/deployment-docker.md
@@ -12,13 +12,13 @@ description: docker部署
### 创建 Docker Network
```
-> docker network create shenyu
+docker network create shenyu
```
### 启动 Apache ShenYu Admin
```
-> docker pull apache/shenyu-admin:${current.version}
+docker pull apache/shenyu-admin:${current.version}
```
> 在 2.5.1 版本之后,在 `docker run` 时,可以通过添加 `-e ADMIN_JVM="xxxx"` 来自定义 JVM 启动参数
@@ -26,7 +26,7 @@ description: docker部署
* 使用 `h2` 来存储后台数据:
```
-> docker run -d -p 9095:9095 --name shenyu-admin --net shenyu
apache/shenyu-admin:${current.version}
+docker run -d -p 9095:9095 --name shenyu-admin --net shenyu
apache/shenyu-admin:${current.version}
```
* 使用 `MySQL` 来存储后台数据, 按照 [指引文档](./deployment-before.md#mysql) 初始化数据库, 将
[mysql-connector.jar](https://repo1.maven.org/maven2/mysql/mysql-connector-java/8.0.29/mysql-connector-java-8.0.29.jar)
拷贝到 `/${your_work_dir}/ext-lib`:
@@ -72,13 +72,13 @@ docker run --name shenyu-admin -v
${your_work_dir}/conf:/opt/shenyu-admin/conf -
首先拉取 Docker 镜像
```shell
-> docker pull apache/shenyu-bootstrap:${current.version}
+docker pull apache/shenyu-bootstrap:${current.version}
```
如果不需要修改配置,可以直接使用以下命令启动
```shell
-> docker run -d \
+docker run -d \
-p 9195:9195 \
--name shenyu-bootstrap \
--net shenyu \
@@ -91,7 +91,7 @@ docker run --name shenyu-admin -v
${your_work_dir}/conf:/opt/shenyu-admin/conf -
如果需要修改配置,可以从 Github 中拉取 bootstrap
的[配置文件](https://github.com/apache/shenyu/tree/master/shenyu-bootstrap/src/main/resources),将其所在目录记为
`$BOOTSTRAP_CONF`,并进行配置修改。修改完毕后,使用以下命令启动
```shell
-> docker run -d \
+docker run -d \
-p 9195:9195 \
-v $BOOTSTRAP_CONF:/opt/shenyu-bootstrap/conf \
--name shenyu-bootstrap \
diff --git
a/i18n/zh/docusaurus-plugin-content-docs/current/deployment/deployment-local.md
b/i18n/zh/docusaurus-plugin-content-docs/current/deployment/deployment-local.md
index 86b880a40d4..1ec4c66252d 100644
---
a/i18n/zh/docusaurus-plugin-content-docs/current/deployment/deployment-local.md
+++
b/i18n/zh/docusaurus-plugin-content-docs/current/deployment/deployment-local.md
@@ -21,9 +21,9 @@ description: 本地部署
* 下载代码
```
-> git clone https://github.com/apache/shenyu.git
-> cd incubator-shenyu
-> mvn clean install -Dmaven.javadoc.skip=true -B -Drat.skip=true
-Djacoco.skip=true -DskipITs -DskipTests
+git clone https://github.com/apache/shenyu.git
+cd incubator-shenyu
+mvn clean install -Dmaven.javadoc.skip=true -B -Drat.skip=true
-Djacoco.skip=true -DskipITs -DskipTests
```
* 使用开发工具启动 `org.apache.shenyu.admin.ShenyuAdminBootstrap`,访问
http://localhost:9095 , 默认用户名和密码分别为: `admin` 和 `123456`。
diff --git
a/i18n/zh/docusaurus-plugin-content-docs/version-2.3.0-Legacy/users-guide/soul-set-up.md
b/i18n/zh/docusaurus-plugin-content-docs/version-2.3.0-Legacy/users-guide/soul-set-up.md
index ee362ed0a17..51b4d79d551 100755
---
a/i18n/zh/docusaurus-plugin-content-docs/version-2.3.0-Legacy/users-guide/soul-set-up.md
+++
b/i18n/zh/docusaurus-plugin-content-docs/version-2.3.0-Legacy/users-guide/soul-set-up.md
@@ -37,14 +37,14 @@ description: 环境搭建
### docker构建
```
-> docker pull dromara/soul-admin
-> docker network create soul
+docker pull dromara/soul-admin
+docker network create soul
```
* 使用 `h2` 来存储后台数据
```
-> docker run -d -p 9095:9095 --net soul dromara/soul-admin
+docker run -d -p 9095:9095 --net soul dromara/soul-admin
```
* 使用 `mysql` 来存储后台数据。
@@ -72,14 +72,14 @@ docker run -v D:\tmp\conf:/opt/soul-admin/conf/ -d -p
9095:9095 --net soul droma
* 下载代码
```
-> git clone https://github.com/dromara/soul.git
-> cd soul
+git clone https://github.com/dromara/soul.git
+cd soul
```
* 编译代码
```
-> mvn clean install -Dmaven.javadoc.skip=true -B -Drat.skip=true
-Djacoco.skip=true -DskipITs -DskipTests
+mvn clean install -Dmaven.javadoc.skip=true -B -Drat.skip=true
-Djacoco.skip=true -DskipITs -DskipTests
```
* 启动 `SoulAdminBootstrap`。
@@ -109,9 +109,9 @@ docker run -v D:\tmp\conf:/opt/soul-admin/conf/ -d -p
9095:9095 --net soul droma
### docker构建
```
-> docker network create soul
-> docker pull dromara/soul-bootstrap
-> docker run -d -p 9195:9195 --net soul dromara/soul-bootstrap
+docker network create soul
+docker pull dromara/soul-bootstrap
+docker run -d -p 9195:9195 --net soul dromara/soul-bootstrap
```
### 本地构建
@@ -119,14 +119,14 @@ docker run -v D:\tmp\conf:/opt/soul-admin/conf/ -d -p
9095:9095 --net soul droma
* 下载代码
```
-> git clone https://github.com/dromara/soul.git
-> cd soul
+git clone https://github.com/dromara/soul.git
+cd soul
```
* 编译代码
```
-> mvn clean install -Dmaven.javadoc.skip=true -B -Drat.skip=true
-Djacoco.skip=true -DskipITs -DskipTests
+mvn clean install -Dmaven.javadoc.skip=true -B -Drat.skip=true
-Djacoco.skip=true -DskipITs -DskipTests
```
* 启动 `SoulBootstrap`。
diff --git
a/i18n/zh/docusaurus-plugin-content-docs/version-2.4.0/deployment/deployment-docker.md
b/i18n/zh/docusaurus-plugin-content-docs/version-2.4.0/deployment/deployment-docker.md
index ef33c8487f0..d084614990b 100644
---
a/i18n/zh/docusaurus-plugin-content-docs/version-2.4.0/deployment/deployment-docker.md
+++
b/i18n/zh/docusaurus-plugin-content-docs/version-2.4.0/deployment/deployment-docker.md
@@ -10,14 +10,14 @@ description: docker部署
### 启动Apache ShenYu Admin
```
-> docker pull apache/shenyu-admin:2.4.0
-> docker network create shenyu
+docker pull apache/shenyu-admin:2.4.0
+docker network create shenyu
```
* 使用 `h2` 来存储后台数据:
```
-> docker run -d -p 9095:9095 --net shenyu apache/shenyu-admin:2.4.0
+docker run -d -p 9095:9095 --net shenyu apache/shenyu-admin:2.4.0
```
* 使用 `MySQL` 来存储后台数据,将
[mysql-connector.jar](https://repo1.maven.org/maven2/mysql/mysql-connector-java/8.0.18/mysql-connector-java-8.0.18.jar)
拷贝到 `/${your_work_dir}/ext-lib`:
@@ -35,7 +35,7 @@ docker run -v ${your_work_dir}/conf:/opt/shenyu-admin/conf/
-v /${your_work_dir}
### 启动Apache ShenYu Bootstrap
```
-> docker run -d \
+docker run -d \
-p 9195:9195 \
-v $BOOTSTRAP_CONF:/opt/shenyu-bootstrap/conf \
--name shenyu-bootstrap \
diff --git
a/i18n/zh/docusaurus-plugin-content-docs/version-2.4.0/deployment/deployment-local.md
b/i18n/zh/docusaurus-plugin-content-docs/version-2.4.0/deployment/deployment-local.md
index 1d3a48b66f4..fe9c26f1a57 100644
---
a/i18n/zh/docusaurus-plugin-content-docs/version-2.4.0/deployment/deployment-local.md
+++
b/i18n/zh/docusaurus-plugin-content-docs/version-2.4.0/deployment/deployment-local.md
@@ -19,9 +19,9 @@ description: 本地部署
* 下载代码
```
-> git clone https://github.com/apache/incubator-shenyu.git
-> cd incubator-shenyu
-> mvn clean install -Dmaven.javadoc.skip=true -B -Drat.skip=true
-Djacoco.skip=true -DskipITs -DskipTests
+git clone https://github.com/apache/incubator-shenyu.git
+cd incubator-shenyu
+mvn clean install -Dmaven.javadoc.skip=true -B -Drat.skip=true
-Djacoco.skip=true -DskipITs -DskipTests
```
* 使用开发工具启动 `org.apache.shenyu.admin.ShenyuAdminBootstrap`,访问
http://localhost:9095 , 默认用户名和密码分别为: `admin` 和 `123456`。
diff --git
a/i18n/zh/docusaurus-plugin-content-docs/version-2.4.1/deployment/deployment-docker.md
b/i18n/zh/docusaurus-plugin-content-docs/version-2.4.1/deployment/deployment-docker.md
index f55227853ec..87285604b5f 100644
---
a/i18n/zh/docusaurus-plugin-content-docs/version-2.4.1/deployment/deployment-docker.md
+++
b/i18n/zh/docusaurus-plugin-content-docs/version-2.4.1/deployment/deployment-docker.md
@@ -11,14 +11,14 @@ description: docker部署
### 启动Apache ShenYu Admin
```
-> docker pull apache/shenyu-admin:2.4.1
-> docker network create shenyu
+docker pull apache/shenyu-admin:2.4.1
+docker network create shenyu
```
* 使用 `h2` 来存储后台数据:
```
-> docker run -d -p 9095:9095 --net shenyu apache/shenyu-admin:2.4.1
+docker run -d -p 9095:9095 --net shenyu apache/shenyu-admin:2.4.1
```
* 使用 `MySQL` 来存储后台数据,将
[mysql-connector.jar](https://repo1.maven.org/maven2/mysql/mysql-connector-java/8.0.18/mysql-connector-java-8.0.18.jar)
拷贝到 `/${your_work_dir}/ext-lib`:
@@ -48,7 +48,7 @@ docker run -v ${your_work_dir}/conf:/opt/shenyu-admin/conf -d
-p 9095:9095 --net
### 启动Apache ShenYu Bootstrap
```
-> docker run -d \
+docker run -d \
-p 9195:9195 \
-v $BOOTSTRAP_CONF:/opt/shenyu-bootstrap/conf \
--name shenyu-bootstrap \
diff --git
a/i18n/zh/docusaurus-plugin-content-docs/version-2.4.1/deployment/deployment-local.md
b/i18n/zh/docusaurus-plugin-content-docs/version-2.4.1/deployment/deployment-local.md
index 56567aae806..0505c581ca2 100644
---
a/i18n/zh/docusaurus-plugin-content-docs/version-2.4.1/deployment/deployment-local.md
+++
b/i18n/zh/docusaurus-plugin-content-docs/version-2.4.1/deployment/deployment-local.md
@@ -19,9 +19,9 @@ description: 本地部署
* 下载代码
```
-> git clone https://github.com/apache/incubator-shenyu.git
-> cd incubator-shenyu
-> mvn clean install -Dmaven.javadoc.skip=true -B -Drat.skip=true
-Djacoco.skip=true -DskipITs -DskipTests
+git clone https://github.com/apache/incubator-shenyu.git
+cd incubator-shenyu
+mvn clean install -Dmaven.javadoc.skip=true -B -Drat.skip=true
-Djacoco.skip=true -DskipITs -DskipTests
```
* 使用开发工具启动 `org.apache.shenyu.admin.ShenyuAdminBootstrap`,访问
http://localhost:9095 , 默认用户名和密码分别为: `admin` 和 `123456`。
diff --git
a/i18n/zh/docusaurus-plugin-content-docs/version-2.4.2/deployment/deployment-docker.md
b/i18n/zh/docusaurus-plugin-content-docs/version-2.4.2/deployment/deployment-docker.md
index 5b1a73bdefe..37cd45725c2 100644
---
a/i18n/zh/docusaurus-plugin-content-docs/version-2.4.2/deployment/deployment-docker.md
+++
b/i18n/zh/docusaurus-plugin-content-docs/version-2.4.2/deployment/deployment-docker.md
@@ -10,14 +10,14 @@ description: docker部署
### 启动Apache ShenYu Admin
```
-> docker pull apache/shenyu-admin:2.4.2
-> docker network create shenyu
+docker pull apache/shenyu-admin:2.4.2
+docker network create shenyu
```
* 使用 `h2` 来存储后台数据:
```
-> docker run -d -p 9095:9095 --net shenyu apache/shenyu-admin:2.4.2
+docker run -d -p 9095:9095 --net shenyu apache/shenyu-admin:2.4.2
```
* 使用 `MySQL` 来存储后台数据,将
[mysql-connector.jar](https://repo1.maven.org/maven2/mysql/mysql-connector-java/8.0.18/mysql-connector-java-8.0.18.jar)
拷贝到 `/${your_work_dir}/ext-lib`:
@@ -49,9 +49,9 @@ docker run -v ${your_work_dir}/conf:/opt/shenyu-admin/conf -d
-p 9095:9095 --net
宿主机中,bootstrap的[配置文件](https://github.com/apache/incubator-shenyu/tree/master/shenyu-bootstrap/src/main/resources)所在目录记为
`$BOOTSTRAP_CONF`。
```shell
-> docker network create shenyu
-> docker pull apache/shenyu-bootstrap:2.4.2
-> docker run -d \
+docker network create shenyu
+docker pull apache/shenyu-bootstrap:2.4.2
+docker run -d \
-p 9195:9195 \ -v $BOOTSTRAP_CONF:/opt/shenyu-bootstrap/conf \
apache/shenyu-bootstrap:2.4.2
```
@@ -71,7 +71,7 @@ agent相关配置文件位于
[shenyu-dist/shenyu-agent-dist/src/main/resources/
附带参数 `agent` 表示启动 `shenyu-agent`。
```shell
-> docker run -d \
+docker run -d \
-p 9195:9195 \
-v $BOOTSTRAP_CONF:/opt/shenyu-bootstrap/conf \
--name shenyu-bootstrap \
diff --git
a/i18n/zh/docusaurus-plugin-content-docs/version-2.4.2/deployment/deployment-local.md
b/i18n/zh/docusaurus-plugin-content-docs/version-2.4.2/deployment/deployment-local.md
index ab77e8958de..da125b8fc68 100644
---
a/i18n/zh/docusaurus-plugin-content-docs/version-2.4.2/deployment/deployment-local.md
+++
b/i18n/zh/docusaurus-plugin-content-docs/version-2.4.2/deployment/deployment-local.md
@@ -19,9 +19,9 @@ description: 本地部署
* 下载代码
```
-> git clone https://github.com/apache/incubator-shenyu.git
-> cd incubator-shenyu
-> mvn clean install -Dmaven.javadoc.skip=true -B -Drat.skip=true
-Djacoco.skip=true -DskipITs -DskipTests
+git clone https://github.com/apache/incubator-shenyu.git
+cd incubator-shenyu
+mvn clean install -Dmaven.javadoc.skip=true -B -Drat.skip=true
-Djacoco.skip=true -DskipITs -DskipTests
```
* 使用开发工具启动 `org.apache.shenyu.admin.ShenyuAdminBootstrap`,访问
http://localhost:9095 , 默认用户名和密码分别为: `admin` 和 `123456`。
diff --git
a/i18n/zh/docusaurus-plugin-content-docs/version-2.4.2/user-guide/observability/observability.md
b/i18n/zh/docusaurus-plugin-content-docs/version-2.4.2/user-guide/observability/observability.md
index f771daa6614..424ba40a0b7 100644
---
a/i18n/zh/docusaurus-plugin-content-docs/version-2.4.2/user-guide/observability/observability.md
+++
b/i18n/zh/docusaurus-plugin-content-docs/version-2.4.2/user-guide/observability/observability.md
@@ -27,14 +27,14 @@ description: Observability
- 下载代码
```shell
-> git clone https://github.com/apache/incubator-shenyu.git
+git clone https://github.com/apache/incubator-shenyu.git
```
- 使用Maven编译代码
```shell
-> cd incubator-shenyu
-> mvn clean install -Dmaven.javadoc.skip=true -B -Drat.skip=true
-Djacoco.skip=true -DskipITs -DskipTests
+cd incubator-shenyu
+mvn clean install -Dmaven.javadoc.skip=true -B -Drat.skip=true
-Djacoco.skip=true -DskipITs -DskipTests
```
编译成功后,在 `~/shenyu/shenyu-dist/shenyu-agent-dist/target/shenyu-agent` 目录下,可以看见
`shenyu-agent` 模块编译后的jar包和相关配置文件。
diff --git
a/i18n/zh/docusaurus-plugin-content-docs/version-2.4.3/deployment/deployment-docker.md
b/i18n/zh/docusaurus-plugin-content-docs/version-2.4.3/deployment/deployment-docker.md
index e3e16e5e6a4..05386ea0472 100644
---
a/i18n/zh/docusaurus-plugin-content-docs/version-2.4.3/deployment/deployment-docker.md
+++
b/i18n/zh/docusaurus-plugin-content-docs/version-2.4.3/deployment/deployment-docker.md
@@ -12,14 +12,14 @@ description: docker部署
### 启动Apache ShenYu Admin
```
-> docker pull apache/shenyu-admin:${current.version}
-> docker network create shenyu
+docker pull apache/shenyu-admin:${current.version}
+docker network create shenyu
```
* 使用 `h2` 来存储后台数据:
```
-> docker run -d -p 9095:9095 --net shenyu
apache/shenyu-admin:${current.version}
+docker run -d -p 9095:9095 --net shenyu apache/shenyu-admin:${current.version}
```
* 使用 `MySQL` 来存储后台数据, 按照 [指引文档](./deployment-before.md#mysql) 初始化数据库, 将
[mysql-connector.jar](https://repo1.maven.org/maven2/mysql/mysql-connector-java/8.0.18/mysql-connector-java-8.0.18.jar)
拷贝到 `/${your_work_dir}/ext-lib`:
@@ -63,7 +63,7 @@ docker run -v ${your_work_dir}/conf:/opt/shenyu-admin/conf -d
-p 9095:9095 --net
宿主机中,bootstrap的[配置文件](https://github.com/apache/incubator-shenyu/tree/master/shenyu-bootstrap/src/main/resources)所在目录记为
`$BOOTSTRAP_CONF`。
```shell
-> docker run -d \
+docker run -d \
-p 9195:9195 \
-v $BOOTSTRAP_CONF:/opt/shenyu-bootstrap/conf \
--name shenyu-bootstrap \
diff --git
a/i18n/zh/docusaurus-plugin-content-docs/version-2.4.3/deployment/deployment-local.md
b/i18n/zh/docusaurus-plugin-content-docs/version-2.4.3/deployment/deployment-local.md
index 4b3a572701f..27e0ab79d7d 100644
---
a/i18n/zh/docusaurus-plugin-content-docs/version-2.4.3/deployment/deployment-local.md
+++
b/i18n/zh/docusaurus-plugin-content-docs/version-2.4.3/deployment/deployment-local.md
@@ -21,9 +21,9 @@ description: 本地部署
* 下载代码
```
-> git clone https://github.com/apache/incubator-shenyu.git
-> cd incubator-shenyu
-> mvn clean install -Dmaven.javadoc.skip=true -B -Drat.skip=true
-Djacoco.skip=true -DskipITs -DskipTests
+git clone https://github.com/apache/incubator-shenyu.git
+cd incubator-shenyu
+mvn clean install -Dmaven.javadoc.skip=true -B -Drat.skip=true
-Djacoco.skip=true -DskipITs -DskipTests
```
* 使用开发工具启动 `org.apache.shenyu.admin.ShenyuAdminBootstrap`,访问
http://localhost:9095 , 默认用户名和密码分别为: `admin` 和 `123456`。
diff --git
a/i18n/zh/docusaurus-plugin-content-docs/version-2.5.0/deployment/deployment-docker.md
b/i18n/zh/docusaurus-plugin-content-docs/version-2.5.0/deployment/deployment-docker.md
index 42a40a188bd..9fd0e1ce704 100644
---
a/i18n/zh/docusaurus-plugin-content-docs/version-2.5.0/deployment/deployment-docker.md
+++
b/i18n/zh/docusaurus-plugin-content-docs/version-2.5.0/deployment/deployment-docker.md
@@ -12,14 +12,14 @@ description: docker部署
### 启动Apache ShenYu Admin
```
-> docker pull apache/shenyu-admin:${current.version}
-> docker network create shenyu
+docker pull apache/shenyu-admin:${current.version}
+docker network create shenyu
```
* 使用 `h2` 来存储后台数据:
```
-> docker run -d -p 9095:9095 \
+docker run -d -p 9095:9095 \
--net shenyu apache/shenyu-admin:${current.version}
```
@@ -82,7 +82,7 @@ docker run -v ${your_work_dir}/conf:/opt/shenyu-admin/conf \
宿主机中,bootstrap的[配置文件](https://github.com/apache/incubator-shenyu/tree/master/shenyu-bootstrap/src/main/resources)所在目录记为
`$BOOTSTRAP_CONF`。
```shell
-> docker run -d \
+docker run -d \
-p 9195:9195 \
-v $BOOTSTRAP_CONF:/opt/shenyu-bootstrap/conf \
--name shenyu-bootstrap \
diff --git
a/i18n/zh/docusaurus-plugin-content-docs/version-2.5.0/deployment/deployment-local.md
b/i18n/zh/docusaurus-plugin-content-docs/version-2.5.0/deployment/deployment-local.md
index eb5b7d1569f..f82e7545d11 100644
---
a/i18n/zh/docusaurus-plugin-content-docs/version-2.5.0/deployment/deployment-local.md
+++
b/i18n/zh/docusaurus-plugin-content-docs/version-2.5.0/deployment/deployment-local.md
@@ -21,9 +21,9 @@ description: 本地部署
* 下载代码
```
-> git clone https://github.com/apache/shenyu.git
-> cd shenyu
-> mvn clean install -Dmaven.javadoc.skip=true -B -Drat.skip=true
-Djacoco.skip=true -DskipITs -DskipTests
+git clone https://github.com/apache/shenyu.git
+cd shenyu
+mvn clean install -Dmaven.javadoc.skip=true -B -Drat.skip=true
-Djacoco.skip=true -DskipITs -DskipTests
```
* 使用开发工具启动 `org.apache.shenyu.admin.ShenyuAdminBootstrap`,访问
http://localhost:9095 , 默认用户名和密码分别为: `admin` 和 `123456`。
diff --git a/versioned_docs/version-2.3.0-Legacy/users-guide/soul-set-up.md
b/versioned_docs/version-2.3.0-Legacy/users-guide/soul-set-up.md
index 78808b15814..c445e3068c2 100755
--- a/versioned_docs/version-2.3.0-Legacy/users-guide/soul-set-up.md
+++ b/versioned_docs/version-2.3.0-Legacy/users-guide/soul-set-up.md
@@ -39,20 +39,20 @@ description: Environment Setup
### docker
```
-> docker pull dromara/soul-admin
-> docker network create soul
+docker pull dromara/soul-admin
+docker network create soul
```
* use `h2` store
```
-> docker run -d -p 9095:9095 --net soul dromara/soul-admin
+docker run -d -p 9095:9095 --net soul dromara/soul-admin
```
* use `mysql` store.
```
-> docker run -e "SPRING_PROFILES_ACTIVE=mysql" -d -p 9095:9095 --net soul
dromara/soul-admin
+docker run -e "SPRING_PROFILES_ACTIVE=mysql" -d -p 9095:9095 --net soul
dromara/soul-admin
```
If you want to override environment variables, you can do like this.
@@ -74,9 +74,9 @@ docker run -v D:\tmp\conf:/opt/soul-admin/conf/ -d -p
9095:9095 --net soul droma
* download
```
-> git clone https://github.com/dromara/soul.git
-> cd soul
-> mvn clean install -Dmaven.javadoc.skip=true -B -Drat.skip=true
-Djacoco.skip=true -DskipITs -DskipTests
+git clone https://github.com/dromara/soul.git
+cd soul
+mvn clean install -Dmaven.javadoc.skip=true -B -Drat.skip=true
-Djacoco.skip=true -DskipITs -DskipTests
```
* setup for `SoulAdminBootstrap`.
@@ -106,17 +106,17 @@ Visit `http://localhost:9095/index.html` default
username:admin password: 123
### docker
```
-> docker network create soul
-> docker pull dromara/soul-bootstrap
-> docker run -d -p 9195:9195 --net soul dromara/soul-bootstrap
+docker network create soul
+docker pull dromara/soul-bootstrap
+docker run -d -p 9195:9195 --net soul dromara/soul-bootstrap
```
### local
```
-> git clone https://github.com/dromara/soul.git
-> cd soul
-> mvn clean install -Dmaven.javadoc.skip=true -B -Drat.skip=true
-Djacoco.skip=true -DskipITs -DskipTests
+git clone https://github.com/dromara/soul.git
+cd soul
+mvn clean install -Dmaven.javadoc.skip=true -B -Drat.skip=true
-Djacoco.skip=true -DskipITs -DskipTests
```
* setup for `SoulBootstrap`.
diff --git a/versioned_docs/version-2.4.0/deployment/deployment-docker.md
b/versioned_docs/version-2.4.0/deployment/deployment-docker.md
index 86b8dcac3b5..652f8dc9fc8 100644
--- a/versioned_docs/version-2.4.0/deployment/deployment-docker.md
+++ b/versioned_docs/version-2.4.0/deployment/deployment-docker.md
@@ -10,14 +10,14 @@ This article introduces the use of `docker` to deploy the
`Apache ShenYu` gatewa
### Start Apache ShenYu Admin
```
-> docker pull apache/shenyu-admin:2.4.0
-> docker network create shenyu
+docker pull apache/shenyu-admin:2.4.0
+docker network create shenyu
```
* use `h2` to store data:
```
-> docker run -d -p 9095:9095 --net shenyu apache/shenyu-admin:2.4.0
+docker run -d -p 9095:9095 --net shenyu apache/shenyu-admin:2.4.0
```
* use `MySQL` to store data, copy
[mysql-connector.jar](https://repo1.maven.org/maven2/mysql/mysql-connector-java/8.0.18/mysql-connector-java-8.0.18.jar)
to `/$(your_work_dir)/ext-lib`:
@@ -35,7 +35,7 @@ docker run -v ${your_work_dir}/conf:/opt/shenyu-admin/conf/
-v /${your_work_dir}
### Start Apache ShenYu Bootstrap
```
-> docker network create shenyu
-> docker pull apache/shenyu-bootstrap:2.4.0
-> docker run -d -p 9195:9195 --net shenyu apache/shenyu-bootstrap:2.4.0
+docker network create shenyu
+docker pull apache/shenyu-bootstrap:2.4.0
+docker run -d -p 9195:9195 --net shenyu apache/shenyu-bootstrap:2.4.0
```
diff --git a/versioned_docs/version-2.4.0/deployment/deployment-local.md
b/versioned_docs/version-2.4.0/deployment/deployment-local.md
index c712e6bb6ee..4b958a89069 100644
--- a/versioned_docs/version-2.4.0/deployment/deployment-local.md
+++ b/versioned_docs/version-2.4.0/deployment/deployment-local.md
@@ -19,9 +19,9 @@ This article introduces how to start the `Apache ShenYu`
gateway in the local en
* Download
```
-> git clone https://github.com/apache/incubator-shenyu.git
-> cd incubator-shenyu
-> mvn clean install -Dmaven.javadoc.skip=true -B -Drat.skip=true
-Djacoco.skip=true -DskipITs -DskipTests
+git clone https://github.com/apache/incubator-shenyu.git
+cd incubator-shenyu
+mvn clean install -Dmaven.javadoc.skip=true -B -Drat.skip=true
-Djacoco.skip=true -DskipITs -DskipTests
```
* use the development tool to start
`org.apache.shenyu.admin.ShenyuAdminBootstrap`,Visit http://localhost:9095, the
default username and password are: `admin` and `123456` respectively.
diff --git a/versioned_docs/version-2.4.1/deployment/deployment-docker.md
b/versioned_docs/version-2.4.1/deployment/deployment-docker.md
index 92dfc0be65b..ac42278c341 100644
--- a/versioned_docs/version-2.4.1/deployment/deployment-docker.md
+++ b/versioned_docs/version-2.4.1/deployment/deployment-docker.md
@@ -10,14 +10,14 @@ This article introduces the use of `docker` to deploy the
`Apache ShenYu` gatewa
### Start Apache ShenYu Admin
```
-> docker pull apache/shenyu-admin:2.4.1
-> docker network create shenyu
+docker pull apache/shenyu-admin:2.4.1
+docker network create shenyu
```
* use `h2` to store data:
```
-> docker run -d -p 9095:9095 --net shenyu apache/shenyu-admin:2.4.1
+docker run -d -p 9095:9095 --net shenyu apache/shenyu-admin:2.4.1
```
* use `MySQL` to store data, copy
[mysql-connector.jar](https://repo1.maven.org/maven2/mysql/mysql-connector-java/8.0.18/mysql-connector-java-8.0.18.jar)
to `/$(your_work_dir)/ext-lib`:
@@ -59,7 +59,7 @@ docker run -v ${your_work_dir}/conf:/opt/shenyu-admin/conf -d
-p 9095:9095 --net
### Start Apache ShenYu Bootstrap
```
-> docker network create shenyu
-> docker pull apache/shenyu-bootstrap:2.4.1
-> docker run -d -p 9195:9195 --net shenyu apache/shenyu-bootstrap:2.4.1
+docker network create shenyu
+docker pull apache/shenyu-bootstrap:2.4.1
+docker run -d -p 9195:9195 --net shenyu apache/shenyu-bootstrap:2.4.1
```
diff --git a/versioned_docs/version-2.4.1/deployment/deployment-local.md
b/versioned_docs/version-2.4.1/deployment/deployment-local.md
index c68cd83b4f9..c7b47df29a9 100644
--- a/versioned_docs/version-2.4.1/deployment/deployment-local.md
+++ b/versioned_docs/version-2.4.1/deployment/deployment-local.md
@@ -19,9 +19,9 @@ This article introduces how to start the `Apache ShenYu`
gateway in the local en
* Download
```
-> git clone https://github.com/apache/incubator-shenyu.git
-> cd shenyu
-> mvn clean install -Dmaven.javadoc.skip=true -B -Drat.skip=true
-Djacoco.skip=true -DskipITs -DskipTests
+git clone https://github.com/apache/incubator-shenyu.git
+cd shenyu
+mvn clean install -Dmaven.javadoc.skip=true -B -Drat.skip=true
-Djacoco.skip=true -DskipITs -DskipTests
```
* use the development tool to start
`org.apache.shenyu.admin.ShenyuAdminBootstrap`,Visit http://localhost:9095, the
default username and password are: `admin` and `123456` respectively.
diff --git a/versioned_docs/version-2.4.2/deployment/deployment-docker.md
b/versioned_docs/version-2.4.2/deployment/deployment-docker.md
index d40b6296d95..75ce1796668 100644
--- a/versioned_docs/version-2.4.2/deployment/deployment-docker.md
+++ b/versioned_docs/version-2.4.2/deployment/deployment-docker.md
@@ -10,14 +10,14 @@ This article introduces the use of `docker` to deploy the
`Apache ShenYu` gatewa
### Start Apache ShenYu Admin
```
-> docker pull apache/shenyu-admin:2.4.2
-> docker network create shenyu
+docker pull apache/shenyu-admin:2.4.2
+docker network create shenyu
```
* use `h2` to store data:
```
-> docker run -d -p 9095:9095 --net shenyu apache/shenyu-admin:2.4.2
+docker run -d -p 9095:9095 --net shenyu apache/shenyu-admin:2.4.2
```
* use `MySQL` to store data, copy
[mysql-connector.jar](https://repo1.maven.org/maven2/mysql/mysql-connector-java/8.0.18/mysql-connector-java-8.0.18.jar)
to `/$(your_work_dir)/ext-lib`:
@@ -49,9 +49,9 @@ docker run -v ${your_work_dir}/conf:/opt/shenyu-admin/conf -d
-p 9095:9095 --net
In the host, the directory where the bootstrap [configuration
file](https://github.com/apache/incubator-shenyu/tree/master/shenyu-bootstrap/src/main/resources)
is located is recorded as `$BOOTSTRAP_CONF`.
```shell
-> docker network create shenyu
-> docker pull apache/shenyu-bootstrap:2.4.2
-> docker run -d \
+docker network create shenyu
+docker pull apache/shenyu-bootstrap:2.4.2
+docker run -d \
-p 9195:9195 \ -v $BOOTSTRAP_CONF:/opt/shenyu-bootstrap/conf \
apache/shenyu-bootstrap:2.4.2
```
@@ -71,9 +71,9 @@ For detailed configuration, please refer to
[Observability](../user-guide/observ
The additional parameter `agent` means to start `shenyu-agent`.
```shell
-> docker network create shenyu
-> docker pull apache/shenyu-bootstrap:2.4.2
-> docker run -d \
+docker network create shenyu
+docker pull apache/shenyu-bootstrap:2.4.2
+docker run -d \
-p 9195:9195 \
--net shenyu \
-v $AGENT_CONF:/opt/shenyu-bootstrap/agent/conf \
diff --git a/versioned_docs/version-2.4.2/deployment/deployment-local.md
b/versioned_docs/version-2.4.2/deployment/deployment-local.md
index c68cd83b4f9..c7b47df29a9 100644
--- a/versioned_docs/version-2.4.2/deployment/deployment-local.md
+++ b/versioned_docs/version-2.4.2/deployment/deployment-local.md
@@ -19,9 +19,9 @@ This article introduces how to start the `Apache ShenYu`
gateway in the local en
* Download
```
-> git clone https://github.com/apache/incubator-shenyu.git
-> cd shenyu
-> mvn clean install -Dmaven.javadoc.skip=true -B -Drat.skip=true
-Djacoco.skip=true -DskipITs -DskipTests
+git clone https://github.com/apache/incubator-shenyu.git
+cd shenyu
+mvn clean install -Dmaven.javadoc.skip=true -B -Drat.skip=true
-Djacoco.skip=true -DskipITs -DskipTests
```
* use the development tool to start
`org.apache.shenyu.admin.ShenyuAdminBootstrap`,Visit http://localhost:9095, the
default username and password are: `admin` and `123456` respectively.
diff --git
a/versioned_docs/version-2.4.2/user-guide/observability/observability.md
b/versioned_docs/version-2.4.2/user-guide/observability/observability.md
index 0b839f59a54..03ac2dbc821 100644
--- a/versioned_docs/version-2.4.2/user-guide/observability/observability.md
+++ b/versioned_docs/version-2.4.2/user-guide/observability/observability.md
@@ -27,14 +27,14 @@ Take the shenyu gateway log information, write it to
elasticSearch (or send it t
- Download code
```shell
-> git clone https://github.com/apache/incubator-shenyu.git
+git clone https://github.com/apache/incubator-shenyu.git
```
- Use Maven to compile the code
```shell
-> cd incubator-shenyu
-> mvn clean install -Dmaven.javadoc.skip=true -B -Drat.skip=true
-Djacoco.skip=true -DskipITs -DskipTests
+cd incubator-shenyu
+mvn clean install -Dmaven.javadoc.skip=true -B -Drat.skip=true
-Djacoco.skip=true -DskipITs -DskipTests
```
After the compilation is successful, you can see the compiled jar package and
related configuration files of the `shenyu-agent` module in the
`~/shenyu/shenyu-dist/shenyu-agent-dist/target/shenyu-agent` directory.
diff --git a/versioned_docs/version-2.4.3/deployment/deployment-docker.md
b/versioned_docs/version-2.4.3/deployment/deployment-docker.md
index 54cec607658..f1d69b3b8a0 100644
--- a/versioned_docs/version-2.4.3/deployment/deployment-docker.md
+++ b/versioned_docs/version-2.4.3/deployment/deployment-docker.md
@@ -12,14 +12,14 @@ This article introduces the use of `docker` to deploy the
`Apache ShenYu` gatewa
### Start Apache ShenYu Admin
```
-> docker pull apache/shenyu-admin:${current.version}
-> docker network create shenyu
+docker pull apache/shenyu-admin:${current.version}
+docker network create shenyu
```
* use `h2` to store data:
```
-> docker run -d -p 9095:9095 --net shenyu
apache/shenyu-admin:${current.version}
+docker run -d -p 9095:9095 --net shenyu apache/shenyu-admin:${current.version}
```
* use `MySQL` to store data, follow the [guide
document](./deployment-before.md#mysql) to initialize the database, copy
[mysql-connector.jar](https://repo1.maven.org/maven2/mysql/mysql-connector-java/8.0.18/mysql-connector-java-8.0.18.jar)
to `/$(your_work_dir)/ext-lib`:
@@ -63,9 +63,9 @@ docker run -v ${your_work_dir}/conf:/opt/shenyu-admin/conf -d
-p 9095:9095 --net
In the host, the directory where the bootstrap [configuration
file](https://github.com/apache/incubator-shenyu/tree/master/shenyu-bootstrap/src/main/resources)
is located is recorded as `$BOOTSTRAP_CONF`.
```shell
-> docker network create shenyu
-> docker pull apache/shenyu-bootstrap:${current.version}
-> docker run -d \
+docker network create shenyu
+docker pull apache/shenyu-bootstrap:${current.version}
+docker run -d \
-p 9195:9195 \ -v $BOOTSTRAP_CONF:/opt/shenyu-bootstrap/conf \
apache/shenyu-bootstrap:${current.version}
```
diff --git a/versioned_docs/version-2.4.3/deployment/deployment-local.md
b/versioned_docs/version-2.4.3/deployment/deployment-local.md
index 5854a663a3e..284b441f13b 100644
--- a/versioned_docs/version-2.4.3/deployment/deployment-local.md
+++ b/versioned_docs/version-2.4.3/deployment/deployment-local.md
@@ -21,9 +21,9 @@ This article introduces how to start the `Apache ShenYu`
gateway in the local en
* Download
```
-> git clone https://github.com/apache/incubator-shenyu.git
-> cd shenyu
-> mvn clean install -Dmaven.javadoc.skip=true -B -Drat.skip=true
-Djacoco.skip=true -DskipITs -DskipTests
+git clone https://github.com/apache/incubator-shenyu.git
+cd shenyu
+mvn clean install -Dmaven.javadoc.skip=true -B -Drat.skip=true
-Djacoco.skip=true -DskipITs -DskipTests
```
* use the development tool to start
`org.apache.shenyu.admin.ShenyuAdminBootstrap`,Visit http://localhost:9095, the
default username and password are: `admin` and `123456` respectively.
diff --git a/versioned_docs/version-2.5.0/deployment/deployment-docker.md
b/versioned_docs/version-2.5.0/deployment/deployment-docker.md
index 03817fc4e7e..b8ee45e6155 100644
--- a/versioned_docs/version-2.5.0/deployment/deployment-docker.md
+++ b/versioned_docs/version-2.5.0/deployment/deployment-docker.md
@@ -12,14 +12,14 @@ This article introduces the use of `docker` to deploy the
`Apache ShenYu` gatewa
### Start Apache ShenYu Admin
```
-> docker pull apache/shenyu-admin:${current.version}
-> docker network create shenyu
+docker pull apache/shenyu-admin:${current.version}
+docker network create shenyu
```
* use `h2` to store data:
```
-> docker run -d -p 9095:9095 --net shenyu
apache/shenyu-admin:${current.version}
+docker run -d -p 9095:9095 --net shenyu apache/shenyu-admin:${current.version}
```
* use `MySQL` to store data, follow the [guide
document](./deployment-before.md#mysql) to initialize the database, copy
[mysql-connector.jar](https://repo1.maven.org/maven2/mysql/mysql-connector-java/8.0.29/mysql-connector-java-8.0.29.jar)
to `/$(your_work_dir)/ext-lib`:
@@ -82,9 +82,9 @@ docker run -v ${your_work_dir}/conf:/opt/shenyu-admin/conf
In the host, the directory where the bootstrap [configuration
file](https://github.com/apache/shenyu/tree/master/shenyu-bootstrap/src/main/resources)
is located is recorded as `$BOOTSTRAP_CONF`.
```shell
-> docker network create shenyu
-> docker pull apache/shenyu-bootstrap:${current.version}
-> docker run -d \
+docker network create shenyu
+docker pull apache/shenyu-bootstrap:${current.version}
+docker run -d \
-p 9195:9195 \
-v $BOOTSTRAP_CONF:/opt/shenyu-bootstrap/conf \
apache/shenyu-bootstrap:${current.version}
diff --git a/versioned_docs/version-2.5.0/deployment/deployment-local.md
b/versioned_docs/version-2.5.0/deployment/deployment-local.md
index 03838e0cbe5..25c5a548693 100644
--- a/versioned_docs/version-2.5.0/deployment/deployment-local.md
+++ b/versioned_docs/version-2.5.0/deployment/deployment-local.md
@@ -21,9 +21,9 @@ This article introduces how to start the `Apache ShenYu`
gateway in the local en
* Download
```
-> git clone https://github.com/apache/shenyu.git
-> cd shenyu
-> mvn clean install -Dmaven.javadoc.skip=true -B -Drat.skip=true
-Djacoco.skip=true -DskipITs -DskipTests
+git clone https://github.com/apache/shenyu.git
+cd shenyu
+mvn clean install -Dmaven.javadoc.skip=true -B -Drat.skip=true
-Djacoco.skip=true -DskipITs -DskipTests
```
* use the development tool to start
`org.apache.shenyu.admin.ShenyuAdminBootstrap`,Visit http://localhost:9095, the
default username and password are: `admin` and `123456` respectively.