Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
赵月辉
/
fastgpt-migrated
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Issues
0
Merge Requests
0
Pipelines
Wiki
Snippets
Members
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Unverified
Commit
db544afa
authored
Jun 01, 2024
by
Archer
Committed by
GitHub
Jun 01, 2024
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix doc (#1655)
* fix: docker doc * fix: docker doc * version doc
parent
a259d034
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
18 additions
and
17 deletions
+18
-17
docSite/content/zh-cn/docs/development/docker.md
+3
-3
docSite/content/zh-cn/docs/development/upgrading/483.md
+3
-2
files/docker/docker-compose-milvus.yml
+4
-4
files/docker/docker-compose-pgvector.yml
+4
-4
files/docker/docker-compose-zilliz.yml
+4
-4
No files found.
docSite/content/zh-cn/docs/development/docker.md
View file @
db544afa
...
@@ -130,11 +130,11 @@ cd fastgpt
...
@@ -130,11 +130,11 @@ cd fastgpt
curl
-O
https://raw.githubusercontent.com/labring/FastGPT/main/projects/app/data/config.json
curl
-O
https://raw.githubusercontent.com/labring/FastGPT/main/projects/app/data/config.json
# pgvector 版本(测试推荐,简单快捷)
# pgvector 版本(测试推荐,简单快捷)
curl
-o
docker-compose.yml https://
github.com/labring/FastGPT/blob/main/files/docker/docker-compose-pgvector
.yml
curl
-o
docker-compose.yml https://
raw.githubusercontent.com/labring/FastGPT/main/files/docker/docker-compose-milvus
.yml
# milvus 版本
# milvus 版本
# curl -o docker-compose.yml https://
github.com/labring/FastGPT/blob
/main/files/docker/docker-compose-milvus.yml
# curl -o docker-compose.yml https://
raw.githubusercontent.com/labring/FastGPT
/main/files/docker/docker-compose-milvus.yml
# zilliz 版本
# zilliz 版本
# curl -o docker-compose.yml https://
github.com/labring/FastGPT/blob
/main/files/docker/docker-compose-zilliz.yml
# curl -o docker-compose.yml https://
raw.githubusercontent.com/labring/FastGPT
/main/files/docker/docker-compose-zilliz.yml
```
```
### 2. 修改 docker-compose.yml 环境变量
### 2. 修改 docker-compose.yml 环境变量
...
...
docSite/content/zh-cn/docs/development/upgrading/483.md
View file @
db544afa
---
---
title
:
'
V4.8.3
(进行中)
'
title
:
'
V4.8.3'
description
:
'
FastGPT
V4.8.3
更新说明'
description
:
'
FastGPT
V4.8.3
更新说明'
icon
:
'
upgrade'
icon
:
'
upgrade'
draft
:
false
draft
:
false
...
@@ -18,5 +18,5 @@ weight: 821
...
@@ -18,5 +18,5 @@ weight: 821
1.
新增 - 支持 Milvus 数据库, 可参考最新的
[
docker-compose-milvus.yml
](
https://github.com/labring/FastGPT/blob/main/files/docker/docker-compose-milvus.yml
)
.
1.
新增 - 支持 Milvus 数据库, 可参考最新的
[
docker-compose-milvus.yml
](
https://github.com/labring/FastGPT/blob/main/files/docker/docker-compose-milvus.yml
)
.
2.
新增 - 给 chat 接口 empty answer 增加 log,便于排查模型问题。
2.
新增 - 给 chat 接口 empty answer 增加 log,便于排查模型问题。
3.
新增 - ifelse判断器,字符串支持正则。
3.
新增 - ifelse判断器,字符串支持正则。
4.
新增 - 代码
支持
4.
新增 - 代码
运行支持 console.log 输出调试。
5.
修复 - 变量更新在 Debug 模式下出错。
5.
修复 - 变量更新在 Debug 模式下出错。
\ No newline at end of file
files/docker/docker-compose-milvus.yml
View file @
db544afa
...
@@ -114,15 +114,15 @@ services:
...
@@ -114,15 +114,15 @@ services:
# fastgpt
# fastgpt
sandbox
:
sandbox
:
container_name
:
sandbox
container_name
:
sandbox
image
:
ghcr.io/labring/fastgpt-sandbox:v4.8.
2
# git
image
:
ghcr.io/labring/fastgpt-sandbox:v4.8.
3
# git
# image: registry.cn-hangzhou.aliyuncs.com/fastgpt/fastgpt-sandbox:v4.8.
2
# 阿里云
# image: registry.cn-hangzhou.aliyuncs.com/fastgpt/fastgpt-sandbox:v4.8.
3
# 阿里云
networks
:
networks
:
-
fastgpt
-
fastgpt
restart
:
always
restart
:
always
fastgpt
:
fastgpt
:
container_name
:
fastgpt
container_name
:
fastgpt
image
:
ghcr.io/labring/fastgpt:v4.8.3
-alpha
# git
image
:
ghcr.io/labring/fastgpt:v4.8.3
# git
# image: registry.cn-hangzhou.aliyuncs.com/fastgpt/fastgpt:v4.8.3
-alpha
# 阿里云
# image: registry.cn-hangzhou.aliyuncs.com/fastgpt/fastgpt:v4.8.3 # 阿里云
ports
:
ports
:
-
3000:3000
-
3000:3000
networks
:
networks
:
...
...
files/docker/docker-compose-pgvector.yml
View file @
db544afa
...
@@ -72,15 +72,15 @@ services:
...
@@ -72,15 +72,15 @@ services:
# fastgpt
# fastgpt
sandbox
:
sandbox
:
container_name
:
sandbox
container_name
:
sandbox
image
:
ghcr.io/labring/fastgpt-sandbox:v4.8.
2
# git
image
:
ghcr.io/labring/fastgpt-sandbox:v4.8.
3
# git
# image: registry.cn-hangzhou.aliyuncs.com/fastgpt/fastgpt-sandbox:v4.8.
2
# 阿里云
# image: registry.cn-hangzhou.aliyuncs.com/fastgpt/fastgpt-sandbox:v4.8.
3
# 阿里云
networks
:
networks
:
-
fastgpt
-
fastgpt
restart
:
always
restart
:
always
fastgpt
:
fastgpt
:
container_name
:
fastgpt
container_name
:
fastgpt
image
:
ghcr.io/labring/fastgpt:v4.8.
2
# git
image
:
ghcr.io/labring/fastgpt:v4.8.
3
# git
# image: registry.cn-hangzhou.aliyuncs.com/fastgpt/fastgpt:v4.8.
2
# 阿里云
# image: registry.cn-hangzhou.aliyuncs.com/fastgpt/fastgpt:v4.8.
3
# 阿里云
ports
:
ports
:
-
3000:3000
-
3000:3000
networks
:
networks
:
...
...
files/docker/docker-compose-zilliz.yml
View file @
db544afa
...
@@ -53,15 +53,15 @@ services:
...
@@ -53,15 +53,15 @@ services:
wait $$!
wait $$!
sandbox
:
sandbox
:
container_name
:
sandbox
container_name
:
sandbox
image
:
ghcr.io/labring/fastgpt-sandbox:v4.8.
2
# git
image
:
ghcr.io/labring/fastgpt-sandbox:v4.8.
3
# git
# image: registry.cn-hangzhou.aliyuncs.com/fastgpt/fastgpt-sandbox:v4.8.
2
# 阿里云
# image: registry.cn-hangzhou.aliyuncs.com/fastgpt/fastgpt-sandbox:v4.8.
3
# 阿里云
networks
:
networks
:
-
fastgpt
-
fastgpt
restart
:
always
restart
:
always
fastgpt
:
fastgpt
:
container_name
:
fastgpt
container_name
:
fastgpt
image
:
ghcr.io/labring/fastgpt:v4.8.
2
# git
image
:
ghcr.io/labring/fastgpt:v4.8.
3
# git
# image: registry.cn-hangzhou.aliyuncs.com/fastgpt/fastgpt:v4.8.
2
# 阿里云
# image: registry.cn-hangzhou.aliyuncs.com/fastgpt/fastgpt:v4.8.
3
# 阿里云
ports
:
ports
:
-
3000:3000
-
3000:3000
networks
:
networks
:
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment