diff --git a/docs/deployment/deployment-docker.md b/docs/deployment/deployment-docker.md index f9962c71..71ed68ff 100644 --- a/docs/deployment/deployment-docker.md +++ b/docs/deployment/deployment-docker.md @@ -17,18 +17,19 @@ This method needs to install docker-compose first, there are already a lot of in ### 2.1 Download deployment package or source code -Download at https://github.com/CloudOrc/SolidUI/releases +* Method 1: Download the address from the official website: https://github.com/CloudOrc/SolidUI/releases, and download the corresponding installation package (overall installation package). +* Method 2: Compile the project installation package according to SolidUI. -Please download the source package solidui-x.x.x-bin.tar.gz +Please download the source package solidui-x.x.x-src.tar.gz ### 2.2 Pull the image and start the service ```shell script # Enter the server (take Centos7 as an example) -tar -zxvf solidui-x.x.x-bin.tar.gz +tar -zxvf solidui-x.x.x-src.tar.gz -cd solidui-x.x.x-bin/docker/ +cd solidui-x.x.x-src/deploy/docker/ docker-compose up -d @@ -52,4 +53,4 @@ update solidui_model_type set token = '' , baseurl='' where id = 'id'; Access link http://localhost:8099 -Default username and password: admin/adm \ No newline at end of file +Default username and password: admin/admin \ No newline at end of file diff --git a/docs/deployment/deplpyment-kubernetes.md b/docs/deployment/deplpyment-kubernetes.md index b477408f..deb0ae1d 100644 --- a/docs/deployment/deplpyment-kubernetes.md +++ b/docs/deployment/deplpyment-kubernetes.md @@ -24,14 +24,18 @@ In this way, you need to install the Helm first. There are a lot of information ### 2.1 Download source code -Download the source code of https://github.com/CloudOrc/SolidUI for items in the github. +* Method 1: Download the address from the official website: https://github.com/CloudOrc/SolidUI/releases, and download the corresponding installation package (overall installation package). +* Method 2: Compile the project installation package according to SolidUI. + +Please download the source package solidui-x.x.x-src.tar.gz + ### 2.2 Start the service with Helm ``` # Enter the server (take Centos7 as an example) -cd SolidUI/deploy/kubernetes/helm-solidui +cd solidui-x.x.x-src/deploy/kubernetes/helm-solidui helm install solidui ./ ``` diff --git a/i18n/zh-CN/docusaurus-plugin-content-docs/current/deployment/deployment-docker.md b/i18n/zh-CN/docusaurus-plugin-content-docs/current/deployment/deployment-docker.md index a7aa642e..103053ec 100644 --- a/i18n/zh-CN/docusaurus-plugin-content-docs/current/deployment/deployment-docker.md +++ b/i18n/zh-CN/docusaurus-plugin-content-docs/current/deployment/deployment-docker.md @@ -21,16 +21,16 @@ sidebar_position: 2 方式2:从https://github.com/CloudOrc/SolidUI/releases 下载下载所需版本的源码包。 -请下载源码包 solidui-x.x.x-bin.tar.gz +请下载源码包 solidui-x.x.x-src.tar.gz ### 2.2 拉取镜像并启动服务 ```shell script # 进入服务器(以Centos7为例) -tar -zxvf solidui-x.x.x-bin.tar.gz +tar -zxvf solidui-x.x.x-src.tar.gz -cd solidui-x.x.x-bin/docker +cd solidui-x.x.x-src/deploy/docker docker-compose up -d diff --git a/i18n/zh-CN/docusaurus-plugin-content-docs/current/deployment/deplpyment-kubernetes.md b/i18n/zh-CN/docusaurus-plugin-content-docs/current/deployment/deplpyment-kubernetes.md index db6bc380..f5cf2839 100644 --- a/i18n/zh-CN/docusaurus-plugin-content-docs/current/deployment/deplpyment-kubernetes.md +++ b/i18n/zh-CN/docusaurus-plugin-content-docs/current/deployment/deplpyment-kubernetes.md @@ -23,14 +23,19 @@ CPU 8核+,内存 16G+ ### 2.1 下载源码 -从github仓库 https://github.com/CloudOrc/SolidUI 获取项目的源代码。 +方式1:从github仓库 https://github.com/CloudOrc/SolidUI 获取项目的源代码。 + +方式2:从https://github.com/CloudOrc/SolidUI/releases 下载下载所需版本的源码包。 + +请下载源码包 solidui-x.x.x-src.tar.gz + ### 2.2 拉取镜像并启动服务 ``` # 进入服务器(以Centos7为例) -cd SolidUI/deploy/kubernetes/helm-solidui +cd solidui-x.x.x-src/deploy/kubernetes/helm-solidui helm install solidui ./ ```