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

jiafengzheng pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/doris.git


The following commit(s) were added to refs/heads/master by this push:
     new bb0d023abd [docs] Change the incubator fields before and after Doris' 
Graduation (#10482)
bb0d023abd is described below

commit bb0d023abdca806cc088025fceb7ce70254dc9b9
Author: yuanyuan8983 <99315889+yuanyuan8...@users.noreply.github.com>
AuthorDate: Thu Jul 14 10:48:20 2022 +0800

    [docs] Change the incubator fields before and after Doris' Graduation 
(#10482)
    
     Change the incubator fields before and after Doris' Graduation
---
 .../docs/install/source-install/compilation-arm.md |  8 ++---
 .../compilation-with-ldb-toolchain.md              |  4 +--
 docs/en/docs/install/source-install/compilation.md | 40 +++++++++++-----------
 .../community/how-to-contribute/pull-request.md    |  6 ++--
 .../release-and-verify/release-doris-core.md       | 20 +++++------
 .../release-and-verify/release-doris-manager.md    | 22 ++++++------
 .../docs/install/source-install/compilation-arm.md | 10 +++---
 .../compilation-with-ldb-toolchain.md              |  4 +--
 .../docs/install/source-install/compilation.md     | 40 +++++++++++-----------
 9 files changed, 77 insertions(+), 77 deletions(-)

diff --git a/docs/en/docs/install/source-install/compilation-arm.md 
b/docs/en/docs/install/source-install/compilation-arm.md
index afeac00521..6afade20bd 100644
--- a/docs/en/docs/install/source-install/compilation-arm.md
+++ b/docs/en/docs/install/source-install/compilation-arm.md
@@ -55,7 +55,7 @@ Note that this document is for guidance only. Compiling in 
different environment
 
 ### Compile with ldb-toolchain
 
-This method works for Doris versions after [commit 
7f3564](https://github.com/apache/incubator-doris/commit/7f3564cca62de49c9f2ea67fcf735921dbebb4d1).
+This method works for Doris versions after [commit 
7f3564](https://github.com/apache/doris/commit/7f3564cca62de49c9f2ea67fcf735921dbebb4d1).
 
 Download 
[ldb\_toolchain\_gen.aarch64.sh](https://github.com/amosbird/ldb_toolchain_gen/releases/download/v0.9.1/ldb_toolchain_gen.aarch64.sh)
 
@@ -333,7 +333,7 @@ Note that both jdk and nodejs need to download the 
corresponding aarch64 version
 
 ```shell
 cd /opt
-git clone https://github.com/apache/incubator-doris.git
+git clone https://github.com/apache/doris.git
 ```
 
 #### Install and deploy
@@ -375,7 +375,7 @@ USE_AVX2=OFF sh build.sh
 
         ```shell
         export 
REPOSITORY_URL=https://doris-thirdparty-repo.bj.bcebos.com/thirdparty
-        sh /opt/incubator-doris/thirdparty/build-thirdparty.sh
+        sh /opt/doris/thirdparty/build-thirdparty.sh
         ````
 
         REPOSITORY_URL contains all third-party library source packages and 
their historical versions.
@@ -386,7 +386,7 @@ USE_AVX2=OFF sh build.sh
 
      - An exception is thrown when executing build.sh
 
-       > /opt/incubator-doris/env.sh: line 46: python: command not found
+       > /opt/doris/env.sh: line 46: python: command not found
        >
        > Python 2.7.18
 
diff --git 
a/docs/en/docs/install/source-install/compilation-with-ldb-toolchain.md 
b/docs/en/docs/install/source-install/compilation-with-ldb-toolchain.md
index f16c1d72af..d164a42e05 100644
--- a/docs/en/docs/install/source-install/compilation-with-ldb-toolchain.md
+++ b/docs/en/docs/install/source-install/compilation-with-ldb-toolchain.md
@@ -28,7 +28,7 @@ under the License.
 
 This document describes how to compile Doris using the LDB toolchain. This 
method is currently used as a supplement to the Docker compilation method to 
facilitate developers and users without a Docker environment to compile Doris 
source code.
 
-> You can still compile the latest code using the Docker development image: 
`apache/incubator-doris:build-env-ldb-toolchain-latest`
+> You can still compile the latest code using the Docker development image: 
`apache/doris:build-env-ldb-toolchain-latest`
 
 > Thanks to [Amos Bird](https://github.com/amosbird) for this contribution.
 
@@ -93,7 +93,7 @@ This works for most Linux distributions (CentOS, Ubuntu, 
etc.).
 4. Download Doris source code
 
     ```
-    git clone https://github.com/apache/incubator-doris.git
+    git clone https://github.com/apache/doris.git
     ```
     
     After downloading, go to the Doris source directory, create the 
`custom_env.sh`, file, and set the PATH environment variable, e.g.
diff --git a/docs/en/docs/install/source-install/compilation.md 
b/docs/en/docs/install/source-install/compilation.md
index f732da4579..da9e2c41f0 100644
--- a/docs/en/docs/install/source-install/compilation.md
+++ b/docs/en/docs/install/source-install/compilation.md
@@ -35,34 +35,34 @@ This document focuses on how to code Doris through source 
code.
 
 1. Download Docker Mirror
 
-    `$ docker pull apache/incubator-doris:build-env-ldb-toolchain-latest`
+    `$ docker pull apache/doris:build-env-ldb-toolchain-latest`
 
     Check mirror download completed:
 
     ```
     $ docker images
     REPOSITORY               TAG                              IMAGE ID         
   CREATED             SIZE
-    apache/incubator-doris   build-env-ldb-toolchain-latest   49f68cecbc1a     
   4 days ago          3.76GB
+    apache/doris   build-env-ldb-toolchain-latest   49f68cecbc1a        4 days 
ago          3.76GB
     ```
 
-> Note1: For different versions of Doris, you need to download the 
corresponding mirror version. From Apache Doris 0.15 version, the docker image 
will keep same version number with Doris. For example, you can use  
`apache/incubator-doris:build-env-for-0.15.0` to compile Apache Doris 0.15.0.
+> Note1: For different versions of Doris, you need to download the 
corresponding mirror version. From Apache Doris 0.15 version, the docker image 
will keep same version number with Doris. For example, you can use  
`apache/doris:build-env-for-0.15.0` to compile Apache Doris 0.15.0.
 >
-> Node2: `apache/incubator-doris:build-env-ldb-toolchain-latest` is for 
compiling trunk code, and will be updated along with trunk code. View the 
update time in `docker/README.md`
+> Node2: `apache/doris:build-env-ldb-toolchain-latest` is for compiling trunk 
code, and will be updated along with trunk code. View the update time in 
`docker/README.md`
 
 | image version | commit id | release version |
 |---|---|---|
-| apache/incubator-doris:build-env | before 
[ff0dd0d](https://github.com/apache/incubator-doris/commit/ff0dd0d2daa588f18b6db56f947e813a56d8ec81)
 | 0.8.x, 0.9.x |
-| apache/incubator-doris:build-env-1.1 | 
[ff0dd0d](https://github.com/apache/incubator-doris/commit/ff0dd0d2daa588f18b6db56f947e813a56d8ec81)
 or later | 0.10.x or later |
-| apache/incubator-doris:build-env-1.2 | 
[4ef5a8c](https://github.com/apache/incubator-doris/commit/4ef5a8c8560351d7fff7ff8fd51c4c7a75e006a8)
 or later | 0.12.x - 0.14.0 |
-| apache/incubator-doris:build-env-1.3.1 | 
[ad67dd3](https://github.com/apache/incubator-doris/commit/ad67dd34a04c1ca960cff38e5b335b30fc7d559f)
 or later | 0.14.x |
-| apache/incubator-doris:build-env-for-0.15.0 | 
[a81f4da](https://github.com/apache/incubator-doris/commit/a81f4da4e461a54782a96433b746d07be89e6b54)
 or later | 0.15.0          |
-| apache/incubator-doris:build-env-latest | before 
[0efef1b](https://github.com/apache/incubator-doris/commit/0efef1b332300887ee0473f9df9bdd9d7297d824)
 | |
-| apache/incubator-doris:build-env-for-1.0.0| | 1.0.0 |
-| apache/incubator-doris:build-env-ldb-toolchain-latest | trunk | trunk |
+| apache/incubator-doris:build-env | before 
[ff0dd0d](https://github.com/apache/doris/commit/ff0dd0d2daa588f18b6db56f947e813a56d8ec81)
 | 0.8.x, 0.9.x |
+| apache/incubator-doris:build-env-1.1 | 
[ff0dd0d](https://github.com/apache/doris/commit/ff0dd0d2daa588f18b6db56f947e813a56d8ec81)
 or later | 0.10.x or later |
+| apache/incubator-doris:build-env-1.2 | 
[4ef5a8c](https://github.com/apache/doris/commit/4ef5a8c8560351d7fff7ff8fd51c4c7a75e006a8)
 or later | 0.12.x - 0.14.0 |
+| apache/incubator-doris:build-env-1.3.1 | 
[ad67dd3](https://github.com/apache/doris/commit/ad67dd34a04c1ca960cff38e5b335b30fc7d559f)
 or later | 0.14.x |
+| apache/doris:build-env-for-0.15.0 | 
[a81f4da](https://github.com/apache/doris/commit/a81f4da4e461a54782a96433b746d07be89e6b54)
 or later | 0.15.0          |
+| apache/incubator-doris:build-env-latest | before 
[0efef1b](https://github.com/apache/doris/commit/0efef1b332300887ee0473f9df9bdd9d7297d824)
 | |
+| apache/doris:build-env-for-1.0.0| | 1.0.0 |
+| apache/doris:build-env-ldb-toolchain-latest | trunk | trunk |
 
 **note**:
 
-> 1. Dev docker image 
[ChangeLog](https://github.com/apache/incubator-doris/blob/master/thirdparty/CHANGELOG.md)
+> 1. Dev docker image 
[ChangeLog](https://github.com/apache/doris/blob/master/thirdparty/CHANGELOG.md)
 
 > 2. Doris version 0.14.0 still uses apache/incubator-doris:build-env-1.2 to 
 > compile, and the 0.14.x code will use apache/incubator-doris:build-env-1.3.1.
 
@@ -86,14 +86,14 @@ This document focuses on how to code Doris through source 
code.
 
 2. Running Mirror
 
-    `$ docker run -it apache/incubator-doris:build-env-ldb-toolchain-latest`
+    `$ docker run -it apache/doris:build-env-ldb-toolchain-latest`
 
     It is recommended to run the container by mounting the local Doris source 
directory, so that the compiled binary file will be stored in the host machine 
and will not disappear because the container exits.
 
      At the same time, it is recommended to mount the maven `.m2` directory in 
the mirror to the host directory at the same time to prevent repeated 
downloading of maven's dependent libraries each time the compilation is started.
 
     ```
-    $ docker run -it -v /your/local/.m2:/root/.m2 -v 
/your/local/incubator-doris-DORIS-x.x.x-release/:/root/incubator-doris-DORIS-x.x.x-release/
 apache/incubator-doris:build-env-ldb-toolchain-latest
+    $ docker run -it -v /your/local/.m2:/root/.m2 -v 
/your/local/doris-DORIS-x.x.x-release/:/root/doris-DORIS-x.x.x-release/ 
apache/doris:build-env-ldb-toolchain-latest
     ```
 
 3. Download source code
@@ -101,9 +101,9 @@ This document focuses on how to code Doris through source 
code.
     After starting the mirror, you should be in the container. The Doris 
source code can be downloaded from the following command (local source 
directory mounted is not required):
 
     ```
-    $ wget https://dist.apache.org/repos/dist/dev/incubator/doris/xxx.tar.gz
+    $ wget https://dist.apache.org/repos/dist/dev/doris/xxx.tar.gz
     or
-    $ git clone https://github.com/apache/incubator-doris.git
+    $ git clone https://github.com/apache/doris.git
     ```
 
 4. Compile Doris
@@ -148,7 +148,7 @@ You can also create a Doris development environment mirror 
yourself, referring s
 You can try to compile Doris directly in your own Linux environment.
 
 1. System Dependence
-    * Before commit 
[ad67dd3](https://github.com/apache/incubator-doris/commit/ad67dd34a04c1ca960cff38e5b335b30fc7d559f)
 will use the dependencies as follows:
+    * Before commit 
[ad67dd3](https://github.com/apache/doris/commit/ad67dd34a04c1ca960cff38e5b335b30fc7d559f)
 will use the dependencies as follows:
 
        `GCC 7.3+, Oracle JDK 1.8+, Python 2.7+, Apache Maven 3.5+, CMake 3.11+ 
Bison 3.0+`
 
@@ -164,7 +164,7 @@ You can try to compile Doris directly in your own Linux 
environment.
 
        `sudo yum groupinstall 'Development Tools' && sudo yum install maven 
cmake byacc flex automake libtool bison binutils-devel zip unzip ncurses-devel 
curl git wget python2 glibc-static libstdc++-static java-1.8.0-openjdk`
 
-    * After commit 
[ad67dd3](https://github.com/apache/incubator-doris/commit/ad67dd34a04c1ca960cff38e5b335b30fc7d559f)
 will use the dependencies as follows:
+    * After commit 
[ad67dd3](https://github.com/apache/doris/commit/ad67dd34a04c1ca960cff38e5b335b30fc7d559f)
 will use the dependencies as follows:
 
        `GCC 10+, Oracle JDK 1.8+, Python 2.7+, Apache Maven 3.5+, CMake 
3.19.2+ Bison 3.0+`
 
@@ -227,7 +227,7 @@ You can try to compile Doris directly in your own Linux 
environment.
 
 1. `Could not transfer artifact 
net.sourceforge.czt.dev:cup-maven-plugin:pom:1.6-cdh from/to xxx`
 
-    If you encounter the above error, please refer to [PR 
#4769](https://github.com/apache/incubator-doris/pull/4769/files) to modify the 
cloudera-related repo configuration in `fe/pom.xml`.
+    If you encounter the above error, please refer to [PR 
#4769](https://github.com/apache/doris/pull/4769/files) to modify the 
cloudera-related repo configuration in `fe/pom.xml`.
 
 2. The third party relies on download connection errors, failures, etc.
 
diff --git a/docs/zh-CN/community/how-to-contribute/pull-request.md 
b/docs/zh-CN/community/how-to-contribute/pull-request.md
index ec4ff3d10a..0889bab0b0 100644
--- a/docs/zh-CN/community/how-to-contribute/pull-request.md
+++ b/docs/zh-CN/community/how-to-contribute/pull-request.md
@@ -26,7 +26,7 @@ under the License.
 
 # 代码提交指南
 
-在 [Github](https://github.com/apache/incubator-doris) 上面可以很方便地提交 [Pull Request 
(PR)](https://help.github.com/articles/about-pull-requests/),下面介绍 Doris 项目的 PR 
方法。
+在 [Github](https://github.com/apache/doris) 上面可以很方便地提交 [Pull Request 
(PR)](https://help.github.com/articles/about-pull-requests/),下面介绍 Doris 项目的 PR 
方法。
 
 ### 1. Fork仓库
 
@@ -46,7 +46,7 @@ git clone https://github.com/<your_github_name>/doris.git
 
 clone 完成后,origin 会默认指向 github 上的远程 fork 地址。
 
-#### (2)将 apache/incubator-doris 添加为本地仓库的远程分支 upstream:
+#### (2)将 apache/doris 添加为本地仓库的远程分支 upstream:
 
 ```
 cd  incubator-doris
@@ -256,4 +256,4 @@ To https://lide-reed:x...@github.com/lide-reed/doris.git
  * [new branch]      my_branch -> my_branch
 ```
 
-至此,就可以按照前面的流程进行创建 PR 了。
\ No newline at end of file
+至此,就可以按照前面的流程进行创建 PR 了。
diff --git a/docs/zh-CN/community/release-and-verify/release-doris-core.md 
b/docs/zh-CN/community/release-and-verify/release-doris-core.md
index ef58c83f6c..a08fc0dc4d 100644
--- a/docs/zh-CN/community/release-and-verify/release-doris-core.md
+++ b/docs/zh-CN/community/release-and-verify/release-doris-core.md
@@ -26,7 +26,7 @@ under the License.
 
 # 发布 Doris Core
 
-Doris Core 指发布 https://github.com/apache/incubator-doris 中的内容。
+Doris Core 指发布 https://github.com/apachedoris 中的内容。
 
 ## 准备发布
 
@@ -81,7 +81,7 @@ $ git push origin 0.9.0-rc01
 Counting objects: 1, done.
 Writing objects: 100% (1/1), 165 bytes | 0 bytes/s, done.
 Total 1 (delta 0), reused 0 (delta 0)
-To g...@github.com:apache/incubator-doris.git
+To g...@github.com:apache/doris.git
  * [new tag]         0.9.0-rc01 -> 0.9.0-rc01
 
 $ git tag
@@ -108,7 +108,7 @@ $ sha512sum --check 
apache-doris-0.9.0-incubating-src.tar.gz.sha512
 然后将打包的内容上传到svn仓库中,首先下载 svn 库:
 
 ```
-svn co https://dist.apache.org/repos/dist/dev/incubator/doris/
+svn co https://dist.apache.org/repos/dist/dev/doris/
 ```
 
 将之前得到的全部文件组织成以下svn路径
@@ -225,18 +225,18 @@ The vote result email thread:
 
https://lists.apache.org/thread.html/64d229f0ba15d66adc83306bc8d7b7ccd5910ecb7e842718ce6a61da@%3Cdev.doris.apache.org%3E
 
 The release candidate has been tagged in GitHub as 0.9.0-rc01, available here:
-https://github.com/apache/incubator-doris/releases/tag/0.9.0-rc01
+https://github.com/apache/doris/releases/tag/0.9.0-rc01
 
 There is no CHANGE LOG file because this is the first release of Apache Doris.
 Thanks to everyone who has contributed to this release, and there is a simple 
release notes can be found here:
-https://github.com/apache/incubator-doris/issues/406
+https://github.com/apache/doris/issues/406
 
 The artifacts (source, signature and checksum) corresponding to this release 
candidate can be found here:
 https://dist.apache.org/repos/dist/dev/incubator/doris/0.9/0.9.0-rc01/
 
 This has been signed with PGP key 33DBF2E0, corresponding to l...@apache.org.
 KEYS file is available here:
-https://downloads.apache.org/incubator/doris/KEYS
+https://downloads.apache.org/doris/KEYS
 It is also listed here:
 https://people.apache.org/keys/committer/lide.asc
 
@@ -250,17 +250,17 @@ To verify and build, you can refer to following 
instruction:
 Firstly, you must be install and start docker service, and then you could 
build Doris as following steps:
 
 Step1: Pull the docker image with Doris building environment
-$ docker pull apache/incubator-doris:build-env-1.3.1
+$ docker pull apache/doris:build-env-1.3.1
 You can check it by listing images, its size is about 3.28GB.
 
 Step2: Run the Docker image
 You can run image directly:
-$ docker run -it apache/incubator-doris:build-env-1.3.1
+$ docker run -it apache/doris:build-env-1.3.1
 
 Step3: Download Doris source
 Now you should in docker environment, and you can download Doris source 
package.
 (If you have downloaded source and it is not in image, you can map its path to 
image in Step2.)
-$ wget 
https://dist.apache.org/repos/dist/dev/incubator/doris/0.9/0.9.0-rc01/apache-doris-0.9.0.rc01-incubating-src.tar.gz
+$ wget 
https://dist.apache.org/repos/dist/dev/doris/0.9/0.9.0-rc01/apache-doris-0.9.0.rc01-incubating-src.tar.gz
 
 Step4: Build Doris
 Now you can decompress and enter Doris source path and build Doris.
@@ -320,4 +320,4 @@ xxx
 
 ## 完成发布
 
-请参阅 [完成发布](./release-complete.md) 文档完成所有发布流程。
\ No newline at end of file
+请参阅 [完成发布](./release-complete.md) 文档完成所有发布流程。
diff --git a/docs/zh-CN/community/release-and-verify/release-doris-manager.md 
b/docs/zh-CN/community/release-and-verify/release-doris-manager.md
index f10f8e35d7..a221a20218 100644
--- a/docs/zh-CN/community/release-and-verify/release-doris-manager.md
+++ b/docs/zh-CN/community/release-and-verify/release-doris-manager.md
@@ -28,7 +28,7 @@ under the License.
 
 其代码库独立于 Doris 主代码库位于:
 
-- https://github.com/apache/incubator-doris-manager
+- https://github.com/apache/doris-manager
 
 ## 准备发布
 
@@ -79,7 +79,7 @@ $ git push origin 1.0.0-rc01
 Counting objects: 1, done.
 Writing objects: 100% (1/1), 165 bytes | 0 bytes/s, done.
 Total 1 (delta 0), reused 0 (delta 0)
-To g...@github.com:apache/incubator-doris-manager.git
+To g...@github.com:apache/doris-manager.git
  * [new tag]         1.0.0-rc01 -> 1.0.0-rc01
 
 $ git tag
@@ -104,7 +104,7 @@ sha512sum --check 
apache-doris-incubating-manager-src-1.0.0-rc01.tar.gz.sha512
 然后将打包的内容上传到svn仓库中,首先下载 svn 库:
 
 ```
-svn co https://dist.apache.org/repos/dist/dev/incubator/doris/
+svn co https://dist.apache.org/repos/dist/dev/doris/
 ```
 
 将之前得到的全部文件组织成以下svn路径
@@ -141,13 +141,13 @@ The release node:
 
 
 The release candidates:
-https://dist.apache.org/repos/dist/dev/incubator/doris/doris-manager/1.0.0/
+https://dist.apache.org/repos/dist/dev/doris/doris-manager/1.0.0/
 
 Keys to verify the Release Candidate:
-https://downloads.apache.org/incubator/doris/KEYS
+https://downloads.apache.org/doris/KEYS
 
 Look at here for how to verify this release candidate:
-http://doris.incubator.apache.org/community/release-and-verify/release-verify.html
+http://doris.apache.org/community/release-and-verify/release-verify.html
 
 Vote thread at dev@doris: [1]
 
@@ -216,18 +216,18 @@ The vote result email thread:
 
https://lists.apache.org/thread.html/64d229f0ba15d66adc83306bc8d7b7ccd5910ecb7e842718ce6a61da@%3Cdev.doris.apache.org%3E
 
 The release candidate has been tagged in GitHub as 1.0.0-rc01, available here:
-https://github.com/apache/incubator-doris-manager/releases/tag/1.0.0-rc01
+https://github.com/apache/doris-manager/releases/tag/1.0.0-rc01
 
 There is no CHANGE LOG file because this is the first release of Apache Doris.
 Thanks to everyone who has contributed to this release, and there is a simple 
release notes can be found here:
-https://github.com/apache/incubator-doris/issues/406
+https://github.com/apache/doris/issues/406
 
 The artifacts (source, signature and checksum) corresponding to this release 
candidate can be found here:
-https://dist.apache.org/repos/dist/dev/incubator/doris/doris-manager/1.0.0/
+https://dist.apache.org/repos/dist/dev/doris/doris-manager/1.0.0/
 
 This has been signed with PGP key 33DBF2E0, corresponding to l...@apache.org.
 KEYS file is available here:
-https://downloads.apache.org/incubator/doris/KEYS
+https://downloads.apache.org/doris/KEYS
 It is also listed here:
 https://people.apache.org/keys/committer/lide.asc
 
@@ -240,7 +240,7 @@ To verify and build, you can refer to following instruction:
 
 Firstly, you must be install and start docker service, and then you could 
build Doris as following steps:
 
-$ wget 
https://dist.apache.org/repos/dist/dev/incubator/doris/doris-manager/1.0.0/apache-doris-incubating-manager-src-1.0.0-rc01.tar.gz
+$ wget 
https://dist.apache.org/repos/dist/dev/doris/doris-manager/1.0.0/apache-doris-incubating-manager-src-1.0.0-rc01.tar.gz
 
 Step4: Build Doris
 Now you can decompress and enter Doris source path and build Doris.
diff --git a/docs/zh-CN/docs/install/source-install/compilation-arm.md 
b/docs/zh-CN/docs/install/source-install/compilation-arm.md
index c5565752f5..10d21efaf2 100644
--- a/docs/zh-CN/docs/install/source-install/compilation-arm.md
+++ b/docs/zh-CN/docs/install/source-install/compilation-arm.md
@@ -333,7 +333,7 @@ under the License.
 
 ```shell
 cd /opt
-git clone https://github.com/apache/incubator-doris.git
+git clone https://github.com/apache/doris.git
 ```
 
 #### 安装部署
@@ -375,7 +375,7 @@ USE_AVX2=OFF sh build.sh
 
        ```shell
        export 
REPOSITORY_URL=https://doris-thirdparty-repo.bj.bcebos.com/thirdparty
-       sh /opt/incubator-doris/thirdparty/build-thirdparty.sh
+       sh /opt/doris/thirdparty/build-thirdparty.sh
        ```
 
        REPOSITORY_URL 中包含所有第三方库源码包和他们的历史版本。
@@ -386,7 +386,7 @@ USE_AVX2=OFF sh build.sh
 
      - 执行 build.sh 时抛出异常
 
-       > /opt/incubator-doris/env.sh: line 46: python: command not found
+       > /opt/doris/env.sh: line 46: python: command not found
        >
        > Python 2.7.18
 
@@ -519,8 +519,8 @@ USE_AVX2=OFF sh build.sh
      将 ldb/aclocal 目录下的 `pkg.m4` 文件拷贝至 libxml2/m4 目录下,重新编译第三方库
 
      ```shell
-     cp /opt/software/ldb_toolchain/share/aclocal/pkg.m4 
/opt/incubator-doris/thirdparty/src/libxml2-v2.9.10/m4
-     sh /opt/incubator-doris/thirdparty/build-thirdparty.sh
+     cp /opt/software/ldb_toolchain/share/aclocal/pkg.m4 
/opt/doris/thirdparty/src/libxml2-v2.9.10/m4
+     sh /opt/doris/thirdparty/build-thirdparty.sh
      ```
 
 9. 执行测试 CURL_HAS_TLS_PROXY 失败
diff --git 
a/docs/zh-CN/docs/install/source-install/compilation-with-ldb-toolchain.md 
b/docs/zh-CN/docs/install/source-install/compilation-with-ldb-toolchain.md
index 42468b5e2a..b922c179e0 100644
--- a/docs/zh-CN/docs/install/source-install/compilation-with-ldb-toolchain.md
+++ b/docs/zh-CN/docs/install/source-install/compilation-with-ldb-toolchain.md
@@ -28,7 +28,7 @@ under the License.
 
 本文档主要介绍如何使用 LDB toolchain 编译 Doris。该方式目前作为 Docker 编译方式的补充,方便没有 Docker 
环境的开发者和用户编译 Doris 源码。
 
-> 您依然可以使用 Docker 
开发镜像编译最新代码:`apache/incubator-doris:build-env-ldb-toolchain-latest`
+> 您依然可以使用 Docker 开发镜像编译最新代码:`apache/doris:build-env-ldb-toolchain-latest`
 
 > 感谢 [Amos Bird](https://github.com/amosbird) 的贡献。
 
@@ -93,7 +93,7 @@ under the License.
 4. 下载 Doris 源码
 
     ```
-    git clone https://github.com/apache/incubator-doris.git
+    git clone https://github.com/apache/doris.git
     ```
 
    下载完成后,进入到 doris 源码目录,创建 `custom_env.sh`,文件,并设置 PATH 环境变量,如:
diff --git a/docs/zh-CN/docs/install/source-install/compilation.md 
b/docs/zh-CN/docs/install/source-install/compilation.md
index cc36cb6694..b201e27618 100644
--- a/docs/zh-CN/docs/install/source-install/compilation.md
+++ b/docs/zh-CN/docs/install/source-install/compilation.md
@@ -34,34 +34,34 @@ under the License.
 
 1. 下载 Docker 镜像
 
-   `$ docker pull apache/incubator-doris:build-env-ldb-toolchain-latest`
+   `$ docker pull apache/doris:build-env-ldb-toolchain-latest`
 
    检查镜像下载完成:
 
     ```
     $ docker images
     REPOSITORY              TAG                               IMAGE ID         
   CREATED             SIZE
-    apache/incubator-doris  build-env-ldb-toolchain-latest    49f68cecbc1a     
   4 days ago          3.76GB
+    apache/doris  build-env-ldb-toolchain-latest    49f68cecbc1a        4 days 
ago          3.76GB
     ```
 
-> 注1:针对不同的 Doris 版本,需要下载对应的镜像版本。从 Apache Doris 0.15 版本起,后续镜像版本号将与 Doris 
版本号统一。比如可以使用 `apache/incubator-doris:build-env-for-0.15.0 `  来编译 0.15.0 版本。
+> 注1:针对不同的 Doris 版本,需要下载对应的镜像版本。从 Apache Doris 0.15 版本起,后续镜像版本号将与 Doris 
版本号统一。比如可以使用 `apache/doris:build-env-for-0.15.0 `  来编译 0.15.0 版本。
 >
-> 注2:`apache/incubator-doris:build-env-ldb-toolchain-latest` 
用于编译最新主干版本代码,会随主干版本不断更新。可以查看 `docker/README.md` 中的更新时间。
+> 注2:`apache/doris:build-env-ldb-toolchain-latest` 
用于编译最新主干版本代码,会随主干版本不断更新。可以查看 `docker/README.md` 中的更新时间。
 
 | 镜像版本 | commit id | doris 版本 |
 |---|---|---|
-| apache/incubator-doris:build-env | before 
[ff0dd0d](https://github.com/apache/incubator-doris/commit/ff0dd0d2daa588f18b6db56f947e813a56d8ec81)
 | 0.8.x, 0.9.x |
-| apache/incubator-doris:build-env-1.1 | 
[ff0dd0d](https://github.com/apache/incubator-doris/commit/ff0dd0d2daa588f18b6db56f947e813a56d8ec81)
 | 0.10.x, 0.11.x |
-| apache/incubator-doris:build-env-1.2 | 
[4ef5a8c](https://github.com/apache/incubator-doris/commit/4ef5a8c8560351d7fff7ff8fd51c4c7a75e006a8)
 | 0.12.x - 0.14.0 |
-| apache/incubator-doris:build-env-1.3.1 | 
[ad67dd3](https://github.com/apache/incubator-doris/commit/ad67dd34a04c1ca960cff38e5b335b30fc7d559f)
 | 0.14.x |
-| apache/incubator-doris:build-env-for-0.15.0 | 
[a81f4da](https://github.com/apache/incubator-doris/commit/a81f4da4e461a54782a96433b746d07be89e6b54)
 or later | 0.15.0 |
-| apache/incubator-doris:build-env-latest | before 
[0efef1b](https://github.com/apache/incubator-doris/commit/0efef1b332300887ee0473f9df9bdd9d7297d824)
 | |
-| apache/incubator-doris:build-env-for-1.0.0| | 1.0.0 |
-| apache/incubator-doris:build-env-ldb-toolchain-latest | trunk | |
+| apache/incubator-doris:build-env | before 
[ff0dd0d](https://github.com/apache/doris/commit/ff0dd0d2daa588f18b6db56f947e813a56d8ec81)
 | 0.8.x, 0.9.x |
+| apache/incubator-doris:build-env-1.1 | 
[ff0dd0d](https://github.com/apache/doris/commit/ff0dd0d2daa588f18b6db56f947e813a56d8ec81)
 | 0.10.x, 0.11.x |
+| apache/incubator-doris:build-env-1.2 | 
[4ef5a8c](https://github.com/apache/doris/commit/4ef5a8c8560351d7fff7ff8fd51c4c7a75e006a8)
 | 0.12.x - 0.14.0 |
+| apache/incubator-doris:build-env-1.3.1 | 
[ad67dd3](https://github.com/apache/doris/commit/ad67dd34a04c1ca960cff38e5b335b30fc7d559f)
 | 0.14.x |
+| apache/doris:build-env-for-0.15.0 | 
[a81f4da](https://github.com/apache/doris/commit/a81f4da4e461a54782a96433b746d07be89e6b54)
 or later | 0.15.0 |
+| apache/incubator-doris:build-env-latest | before 
[0efef1b](https://github.com/apache/doris/commit/0efef1b332300887ee0473f9df9bdd9d7297d824)
 | |
+| apache/doris:build-env-for-1.0.0| | 1.0.0 |
+| apache/doris:build-env-ldb-toolchain-latest | trunk | |
 
 **注意**:
 
-> 1. 编译镜像 
[ChangeLog](https://github.com/apache/incubator-doris/blob/master/thirdparty/CHANGELOG.md)。
+> 1. 编译镜像 
[ChangeLog](https://github.com/apache/doris/blob/master/thirdparty/CHANGELOG.md)。
 
 > 2. doris 0.14.0 版本仍然使用apache/incubator-doris:build-env-1.2 编译,0.14.x 
 > 版本的代码将使用apache/incubator-doris:build-env-1.3.1。
 
@@ -85,14 +85,14 @@ under the License.
 
 2. 运行镜像
 
-   `$ docker run -it apache/incubator-doris:build-env-ldb-toolchain-latest`
+   `$ docker run -it apache/doris:build-env-ldb-toolchain-latest`
 
    建议以挂载本地 Doris 源码目录的方式运行镜像,这样编译的产出二进制文件会存储在宿主机中,不会因为镜像退出而消失。
 
    同时,建议同时将镜像中 maven 的 `.m2` 目录挂载到宿主机目录,以防止每次启动镜像编译时,重复下载 maven 的依赖库。
 
     ```
-    $ docker run -it -v /your/local/.m2:/root/.m2 -v 
/your/local/incubator-doris-DORIS-x.x.x-release/:/root/incubator-doris-DORIS-x.x.x-release/
 apache/incubator-doris:build-env-ldb-toolchain-latest
+    $ docker run -it -v /your/local/.m2:/root/.m2 -v 
/your/local/doris-DORIS-x.x.x-release/:/root/doris-DORIS-x.x.x-release/ 
apache/doris:build-env-ldb-toolchain-latest
     ```
 
 3. 下载源码
@@ -100,9 +100,9 @@ under the License.
    启动镜像后,你应该已经处于容器内。可以通过以下命令下载 Doris 源码(已挂载本地源码目录则不用):
 
     ```
-    $ wget https://dist.apache.org/repos/dist/dev/incubator/doris/xxx.tar.gz
+    $ wget https://dist.apache.org/repos/dist/dev/doris/xxx.tar.gz
     or
-    $ git clone https://github.com/apache/incubator-doris.git
+    $ git clone https://github.com/apache/doris.git
     ```
 
 4. 编译 Doris
@@ -148,7 +148,7 @@ under the License.
 
 1. 系统依赖
    不同的版本依赖也不相同
-    * 在 
[ad67dd3](https://github.com/apache/incubator-doris/commit/ad67dd34a04c1ca960cff38e5b335b30fc7d559f)
 之前版本依赖如下:
+    * 在 
[ad67dd3](https://github.com/apache/doris/commit/ad67dd34a04c1ca960cff38e5b335b30fc7d559f)
 之前版本依赖如下:
 
       `GCC 7.3+, Oracle JDK 1.8+, Python 2.7+, Apache Maven 3.5+, CMake 3.11+  
   Bison 3.0+`
 
@@ -160,7 +160,7 @@ under the License.
 
       `sudo yum groupinstall 'Development Tools' && sudo yum install maven 
cmake byacc flex automake libtool bison binutils-devel zip unzip ncurses-devel 
curl git wget python2 glibc-static libstdc++-static java-1.8.0-openjdk`
 
-    * 在 
[ad67dd3](https://github.com/apache/incubator-doris/commit/ad67dd34a04c1ca960cff38e5b335b30fc7d559f)
 之后版本依赖如下:
+    * 在 
[ad67dd3](https://github.com/apache/doris/commit/ad67dd34a04c1ca960cff38e5b335b30fc7d559f)
 之后版本依赖如下:
 
       `GCC 10+, Oracle JDK 1.8+, Python 2.7+, Apache Maven 3.5+, CMake 3.19.2+ 
Bison 3.0+`
 
@@ -219,7 +219,7 @@ under the License.
 
 1. `Could not transfer artifact 
net.sourceforge.czt.dev:cup-maven-plugin:pom:1.6-cdh from/to xxx`
 
-   如遇到上述错误,请参照 [PR 
#4769](https://github.com/apache/incubator-doris/pull/4769/files) 修改 
`fe/pom.xml` 中 cloudera 相关的仓库配置。
+   如遇到上述错误,请参照 [PR #4769](https://github.com/apache/doris/pull/4769/files) 修改 
`fe/pom.xml` 中 cloudera 相关的仓库配置。
 
 2. 第三方依赖下载连接错误、失效等问题
 


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org
For additional commands, e-mail: commits-h...@doris.apache.org

Reply via email to