Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix deploy #62

Merged
merged 1 commit into from
Sep 20, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 6 additions & 5 deletions docs/deployment/deployment-docker.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand All @@ -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
Default username and password: admin/admin
8 changes: 6 additions & 2 deletions docs/deployment/deplpyment-kubernetes.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 ./
```
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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 ./
```
Expand Down
Loading