Update deployment document (#743)

diff --git a/docs/deployment/deployment-docker.md b/docs/deployment/deployment-docker.md
index 57abdb1..c7cfcc7 100644
--- a/docs/deployment/deployment-docker.md
+++ b/docs/deployment/deployment-docker.md
@@ -16,6 +16,8 @@
 > docker network create shenyu
 ```
 
+> After version 2.5.1, when `docker run`, we can customize JVM startup parameters by adding `-e ADMIN_JVM="xxxx"`
+
 * use `h2` to store data:
 
 ```
@@ -60,6 +62,8 @@
 
 ### Start Apache ShenYu Bootstrap
 
+> After version 2.5.1, when `docker run`, we can customize JVM startup parameters by adding `-e BOOT_JVM="xxxx"`
+
 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
diff --git a/docs/deployment/deployment-package.md b/docs/deployment/deployment-package.md
index 6c0448f..fb14d7c 100644
--- a/docs/deployment/deployment-package.md
+++ b/docs/deployment/deployment-package.md
@@ -15,36 +15,44 @@
 
 * unzip `apache-shenyu-${current.version}-admin-bin.tar.gz`。 go to the `bin` directory.
 
+> After version 2.5.1, `start.sh` started to support custom JVM startup parameters through the environment variable `ADMIN_JVM`.
+
 * use `h2` to store data:
 
 ```
-> windows: start.bat --spring.profiles.active = h2
+> windows: start.bat
 
-> linux: ./start.sh --spring.profiles.active = h2
+> linux: ./start.sh
 ```
 
 * 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, go to the `/conf` directory, and modify the `JDBC` configuration in `application-mysql.yml`.
 
-```
-> windows: start.bat --spring.profiles.active = mysql
+* Modify `spring.profiles.active` in `conf/application.yml` to `mysql`
 
-> linux: ./start.sh --spring.profiles.active = mysql
+```
+> windows: start.bat
+
+> linux: ./start.sh
 ```
 
 * use `PostgreSql` to store data, follow the [guide document](./deployment-before.md#postgresql) to initialize the database, go to the `/conf` directory, and modify the `JDBC` configuration in `application-pg.yml`.
 
+* Modify `spring.profiles.active` in `conf/application.yml` to `pg`
+
 ```
-> windows: start.bat --spring.profiles.active = pg
+> windows: start.bat
 
 > linux: ./start.sh --spring.profiles.active = pg
 ```
 
 * use `Oracle` to store data, follow the [guide document](./deployment-before.md#oracle) to initialize the database, go to the `/conf` directory, and modify the `JDBC` configuration in `application-oracle.yml`.
 
-```
-> windows: start.bat --spring.profiles.active = oracle
+* Modify `spring.profiles.active` in `conf/application.yml` to `oracle`
 
-> linux: ./start.sh --spring.profiles.active = oracle
+```
+> windows: start.bat
+
+> linux: ./start.sh
 ```
 
 ### Start Apache ShenYu Bootstrap
@@ -53,6 +61,8 @@
 
 * unzip `apache-shenyu-${current.version}-bootstrap-bin.tar.gz`。 go to the `bin` directory.
 
+> After version 2.5.1, `start.sh` started to support custom JVM startup parameters through the environment variable `BOOT_JVM`.
+
 ```
 > windwos : start.bat 
 
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 056828c..58d7205 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
@@ -16,6 +16,8 @@
 > docker network create shenyu
 ```
 
+> 在 2.5.1 版本之后,在 `docker run` 时,可以通过添加 `-e ADMIN_JVM="xxxx"` 来自定义 JVM 启动参数
+
 * 使用 `h2` 来存储后台数据:
 
 ```
@@ -60,6 +62,8 @@
 
 ### 启动Apache ShenYu Bootstrap
 
+> 在 2.5.1 版本之后,在 `docker run` 时,可以通过添加 `-e BOOT_JVM="xxxx"` 来自定义 JVM 启动参数
+
 宿主机中,bootstrap的[配置文件](https://github.com/apache/incubator-shenyu/tree/master/shenyu-bootstrap/src/main/resources)所在目录记为 `$BOOTSTRAP_CONF`。
 
 ```shell
diff --git a/i18n/zh/docusaurus-plugin-content-docs/current/deployment/deployment-package.md b/i18n/zh/docusaurus-plugin-content-docs/current/deployment/deployment-package.md
index 438be41..f74d5bf 100644
--- a/i18n/zh/docusaurus-plugin-content-docs/current/deployment/deployment-package.md
+++ b/i18n/zh/docusaurus-plugin-content-docs/current/deployment/deployment-package.md
@@ -16,36 +16,44 @@
 
 * 解压缩 `apache-shenyu-${current.version}-admin-bin.tar.gz`。 进入 `bin` 目录。
 
+> 2.5.1版本后,`start.sh` 开始支持通过环境变量 `ADMIN_JVM` 自定义 JVM 启动参数。
+
 * 使用 `h2` 来存储后台数据:
 
 ```
-> windows: start.bat --spring.profiles.active = h2
+> windows: start.bat
 
-> linux: ./start.sh --spring.profiles.active = h2
+> linux: ./start.sh
 ```
 
 * 使用 `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`, 进入 `/conf` 目录修改 `application-mysql.yaml` 中 `jdbc` 的配置。
 
-```
-> windows: start.bat --spring.profiles.active = mysql
+* 将 `conf/application.yml` 中的 `spring.profiles.active` 修改成 `mysql`
 
-> linux: ./start.sh --spring.profiles.active = mysql
+```
+> windows: start.bat
+
+> linux: ./start.sh
 ```
 
 * 使用 `PostgreSql` 来存储后台数据,需按照 [指引文档](./deployment-before.md#postgresql) 初始化数据库, 进入 `/conf` 目录修改 `application-pg.yaml` 中 `jdbc` 的配置。
 
-```
-> windows: start.bat --spring.profiles.active = pg
+* 将 `conf/application.yml` 中的 `spring.profiles.active` 修改成 `pg`
 
-> linux: ./start.sh --spring.profiles.active = pg
+```
+> windows: start.bat
+
+> linux: ./start.sh
 ```
 
 * 使用 `Oracle` 来存储后台数据,需按照 [指引文档](./deployment-before.md#oracle) 初始化数据库, 进入 `/conf` 目录修改 `application-oracle.yaml` 中 `jdbc` 的配置。
 
-```
-> windows: start.bat --spring.profiles.active = oracle
+* 将 `conf/application.yml` 中的 `spring.profiles.active` 修改成 `oracle`
 
-> linux: ./start.sh --spring.profiles.active = oracle
+```
+> windows: start.bat
+
+> linux: ./start.sh
 ```
 
 ### 启动 Apache ShenYu Bootstrap
@@ -54,6 +62,8 @@
 
 * 解压缩 `apache-shenyu-${current.version}-bootstrap-bin.tar.gz`。 进入 bin 目录。
 
+> 2.5.1版本后,`start.sh` 开始支持通过环境变量 `BOOT_JVM` 自定义 JVM 启动参数。
+
 ```
 > windwos : start.bat 
 
diff --git a/i18n/zh/docusaurus-plugin-content-docs/version-2.5.0/deployment/deployment-package.md b/i18n/zh/docusaurus-plugin-content-docs/version-2.5.0/deployment/deployment-package.md
index 438be41..388ba70 100644
--- a/i18n/zh/docusaurus-plugin-content-docs/version-2.5.0/deployment/deployment-package.md
+++ b/i18n/zh/docusaurus-plugin-content-docs/version-2.5.0/deployment/deployment-package.md
@@ -19,33 +19,39 @@
 * 使用 `h2` 来存储后台数据:
 
 ```
-> windows: start.bat --spring.profiles.active = h2
+> windows: start.bat
 
-> linux: ./start.sh --spring.profiles.active = h2
+> linux: ./start.sh
 ```
 
 * 使用 `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`, 进入 `/conf` 目录修改 `application-mysql.yaml` 中 `jdbc` 的配置。
 
-```
-> windows: start.bat --spring.profiles.active = mysql
+* 将 `conf/application.yml` 中的 `spring.profiles.active` 修改成 `mysql`
 
-> linux: ./start.sh --spring.profiles.active = mysql
+```
+> windows: start.bat
+
+> linux: ./start.sh
 ```
 
 * 使用 `PostgreSql` 来存储后台数据,需按照 [指引文档](./deployment-before.md#postgresql) 初始化数据库, 进入 `/conf` 目录修改 `application-pg.yaml` 中 `jdbc` 的配置。
 
-```
-> windows: start.bat --spring.profiles.active = pg
+* 将 `conf/application.yml` 中的 `spring.profiles.active` 修改成 `pg`
 
-> linux: ./start.sh --spring.profiles.active = pg
+```
+> windows: start.bat
+
+> linux: ./start.sh
 ```
 
 * 使用 `Oracle` 来存储后台数据,需按照 [指引文档](./deployment-before.md#oracle) 初始化数据库, 进入 `/conf` 目录修改 `application-oracle.yaml` 中 `jdbc` 的配置。
 
-```
-> windows: start.bat --spring.profiles.active = oracle
+* 将 `conf/application.yml` 中的 `spring.profiles.active` 修改成 `oracle`
 
-> linux: ./start.sh --spring.profiles.active = oracle
+```
+> windows: start.bat
+
+> linux: ./start.sh
 ```
 
 ### 启动 Apache ShenYu Bootstrap
diff --git a/versioned_docs/version-2.5.0/deployment/deployment-package.md b/versioned_docs/version-2.5.0/deployment/deployment-package.md
index 6c0448f..fbdc3b2 100644
--- a/versioned_docs/version-2.5.0/deployment/deployment-package.md
+++ b/versioned_docs/version-2.5.0/deployment/deployment-package.md
@@ -18,33 +18,39 @@
 * use `h2` to store data:
 
 ```
-> windows: start.bat --spring.profiles.active = h2
+> windows: start.bat
 
-> linux: ./start.sh --spring.profiles.active = h2
+> linux: ./start.sh
 ```
 
 * 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, go to the `/conf` directory, and modify the `JDBC` configuration in `application-mysql.yml`.
 
-```
-> windows: start.bat --spring.profiles.active = mysql
+* Modify `spring.profiles.active` in `conf/application.yml` to `mysql`
 
-> linux: ./start.sh --spring.profiles.active = mysql
+```
+> windows: start.bat
+
+> linux: ./start.sh
 ```
 
 * use `PostgreSql` to store data, follow the [guide document](./deployment-before.md#postgresql) to initialize the database, go to the `/conf` directory, and modify the `JDBC` configuration in `application-pg.yml`.
 
+* Modify `spring.profiles.active` in `conf/application.yml` to `pg`
+
 ```
-> windows: start.bat --spring.profiles.active = pg
+> windows: start.bat
 
 > linux: ./start.sh --spring.profiles.active = pg
 ```
 
 * use `Oracle` to store data, follow the [guide document](./deployment-before.md#oracle) to initialize the database, go to the `/conf` directory, and modify the `JDBC` configuration in `application-oracle.yml`.
 
-```
-> windows: start.bat --spring.profiles.active = oracle
+* Modify `spring.profiles.active` in `conf/application.yml` to `oracle`
 
-> linux: ./start.sh --spring.profiles.active = oracle
+```
+> windows: start.bat
+
+> linux: ./start.sh
 ```
 
 ### Start Apache ShenYu Bootstrap