Skip to content

Commit db544af

Browse files
authored
Fix doc (labring#1655)
* fix: docker doc * fix: docker doc * version doc
1 parent a259d03 commit db544af

File tree

5 files changed

+17
-17
lines changed

5 files changed

+17
-17
lines changed

docSite/content/zh-cn/docs/development/docker.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -130,11 +130,11 @@ cd fastgpt
130130
curl -O https://raw.githubusercontent.com/labring/FastGPT/main/projects/app/data/config.json
131131

132132
# pgvector 版本(测试推荐,简单快捷)
133-
curl -o docker-compose.yml https://github.com/labring/FastGPT/blob/main/files/docker/docker-compose-pgvector.yml
133+
curl -o docker-compose.yml https://raw.githubusercontent.com/labring/FastGPT/main/files/docker/docker-compose-milvus.yml
134134
# milvus 版本
135-
# curl -o docker-compose.yml https://github.com/labring/FastGPT/blob/main/files/docker/docker-compose-milvus.yml
135+
# curl -o docker-compose.yml https://raw.githubusercontent.com/labring/FastGPT/main/files/docker/docker-compose-milvus.yml
136136
# zilliz 版本
137-
# curl -o docker-compose.yml https://github.com/labring/FastGPT/blob/main/files/docker/docker-compose-zilliz.yml
137+
# curl -o docker-compose.yml https://raw.githubusercontent.com/labring/FastGPT/main/files/docker/docker-compose-zilliz.yml
138138
```
139139

140140
### 2. 修改 docker-compose.yml 环境变量

docSite/content/zh-cn/docs/development/upgrading/483.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: 'V4.8.3(进行中)'
2+
title: 'V4.8.3'
33
description: 'FastGPT V4.8.3 更新说明'
44
icon: 'upgrade'
55
draft: false
@@ -18,5 +18,5 @@ weight: 821
1818
1. 新增 - 支持 Milvus 数据库, 可参考最新的 [docker-compose-milvus.yml](https://github.com/labring/FastGPT/blob/main/files/docker/docker-compose-milvus.yml).
1919
2. 新增 - 给 chat 接口 empty answer 增加 log,便于排查模型问题。
2020
3. 新增 - ifelse判断器,字符串支持正则。
21-
4. 新增 - 代码支持
21+
4. 新增 - 代码运行支持 console.log 输出调试。
2222
5. 修复 - 变量更新在 Debug 模式下出错。

files/docker/docker-compose-milvus.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -114,15 +114,15 @@ services:
114114
# fastgpt
115115
sandbox:
116116
container_name: sandbox
117-
image: ghcr.io/labring/fastgpt-sandbox:v4.8.2 # git
118-
# image: registry.cn-hangzhou.aliyuncs.com/fastgpt/fastgpt-sandbox:v4.8.2 # 阿里云
117+
image: ghcr.io/labring/fastgpt-sandbox:v4.8.3 # git
118+
# image: registry.cn-hangzhou.aliyuncs.com/fastgpt/fastgpt-sandbox:v4.8.3 # 阿里云
119119
networks:
120120
- fastgpt
121121
restart: always
122122
fastgpt:
123123
container_name: fastgpt
124-
image: ghcr.io/labring/fastgpt:v4.8.3-alpha # git
125-
# image: registry.cn-hangzhou.aliyuncs.com/fastgpt/fastgpt:v4.8.3-alpha # 阿里云
124+
image: ghcr.io/labring/fastgpt:v4.8.3 # git
125+
# image: registry.cn-hangzhou.aliyuncs.com/fastgpt/fastgpt:v4.8.3 # 阿里云
126126
ports:
127127
- 3000:3000
128128
networks:

files/docker/docker-compose-pgvector.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -72,15 +72,15 @@ services:
7272
# fastgpt
7373
sandbox:
7474
container_name: sandbox
75-
image: ghcr.io/labring/fastgpt-sandbox:v4.8.2 # git
76-
# image: registry.cn-hangzhou.aliyuncs.com/fastgpt/fastgpt-sandbox:v4.8.2 # 阿里云
75+
image: ghcr.io/labring/fastgpt-sandbox:v4.8.3 # git
76+
# image: registry.cn-hangzhou.aliyuncs.com/fastgpt/fastgpt-sandbox:v4.8.3 # 阿里云
7777
networks:
7878
- fastgpt
7979
restart: always
8080
fastgpt:
8181
container_name: fastgpt
82-
image: ghcr.io/labring/fastgpt:v4.8.2 # git
83-
# image: registry.cn-hangzhou.aliyuncs.com/fastgpt/fastgpt:v4.8.2 # 阿里云
82+
image: ghcr.io/labring/fastgpt:v4.8.3 # git
83+
# image: registry.cn-hangzhou.aliyuncs.com/fastgpt/fastgpt:v4.8.3 # 阿里云
8484
ports:
8585
- 3000:3000
8686
networks:

files/docker/docker-compose-zilliz.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -53,15 +53,15 @@ services:
5353
wait $$!
5454
sandbox:
5555
container_name: sandbox
56-
image: ghcr.io/labring/fastgpt-sandbox:v4.8.2 # git
57-
# image: registry.cn-hangzhou.aliyuncs.com/fastgpt/fastgpt-sandbox:v4.8.2 # 阿里云
56+
image: ghcr.io/labring/fastgpt-sandbox:v4.8.3 # git
57+
# image: registry.cn-hangzhou.aliyuncs.com/fastgpt/fastgpt-sandbox:v4.8.3 # 阿里云
5858
networks:
5959
- fastgpt
6060
restart: always
6161
fastgpt:
6262
container_name: fastgpt
63-
image: ghcr.io/labring/fastgpt:v4.8.2 # git
64-
# image: registry.cn-hangzhou.aliyuncs.com/fastgpt/fastgpt:v4.8.2 # 阿里云
63+
image: ghcr.io/labring/fastgpt:v4.8.3 # git
64+
# image: registry.cn-hangzhou.aliyuncs.com/fastgpt/fastgpt:v4.8.3 # 阿里云
6565
ports:
6666
- 3000:3000
6767
networks:

0 commit comments

Comments
 (0)