Commit aa1d879b by Archer Committed by GitHub

deploy doc (#7178)

* deploy doc

* fix: doc
parent 417dfc52
...@@ -9,12 +9,12 @@ ...@@ -9,12 +9,12 @@
# - fastgpt-mcp-server: 3003 # - fastgpt-mcp-server: 3003
# - fastgpt-plugin: 3004 # - fastgpt-plugin: 3004
# - fastgpt-volume-manager: 3005 # - fastgpt-volume-manager: 3005
# - fastgpt-agent-sandbox-proxy: 1006
# - opensandbox-server: 8090 # - opensandbox-server: 8090
# - fastgpt-aiproxy: 3010 # - fastgpt-aiproxy: 3010
# - fastgpt-aiproxy-pg: 5432 # - fastgpt-aiproxy-pg: 5432
# - 使用 pgvector 作为默认的向量库 # - 使用 pgvector 作为默认的向量库
# - fastgpt-agent-sandbox-proxy 通过端口映射暴露给浏览器,内部回源宿主机服务 # - 配置 opensandbox-config 的 network_mode 为 docker 网络,如 dev_fastgpt
# - 配置 opensandbox-config 的 host_ip 为宿主机 LAN IP,如 192.168.1.100
# plugin auth token # plugin auth token
x-plugin-auth-token: &x-plugin-auth-token 'token' x-plugin-auth-token: &x-plugin-auth-token 'token'
...@@ -22,8 +22,6 @@ x-plugin-auth-token: &x-plugin-auth-token 'token' ...@@ -22,8 +22,6 @@ x-plugin-auth-token: &x-plugin-auth-token 'token'
x-code-sandbox-token: &x-code-sandbox-token 'codesandbox' x-code-sandbox-token: &x-code-sandbox-token 'codesandbox'
# volume manager auth token # volume manager auth token
x-volume-manager-auth-token: &x-volume-manager-auth-token 'vmtoken' x-volume-manager-auth-token: &x-volume-manager-auth-token 'vmtoken'
# agent sandbox proxy secret, must match AGENT_SANDBOX_PROXY_SECRET in local FastGPT app
x-agent-sandbox-proxy-secret: &x-agent-sandbox-proxy-secret 'default_fastgpt_agent_sandbox_proxy_secret'
# aiproxy token # aiproxy token
x-aiproxy-token: &x-aiproxy-token 'token' x-aiproxy-token: &x-aiproxy-token 'token'
# 数据库连接相关配置 # 数据库连接相关配置
...@@ -52,8 +50,8 @@ x-log-config: &x-log-config ...@@ -52,8 +50,8 @@ x-log-config: &x-log-config
# 容器运行环境可能会自动注入 HTTP_PROXY/HTTPS_PROXY。 # 容器运行环境可能会自动注入 HTTP_PROXY/HTTPS_PROXY。
# 明确绕过 compose 内部服务,避免内部请求被代理劫持。 # 明确绕过 compose 内部服务,避免内部请求被代理劫持。
x-no-proxy-config: &x-no-proxy-config x-no-proxy-config: &x-no-proxy-config
NO_PROXY: localhost,127.0.0.1,::1,fastgpt,fastgpt-plugin,fastgpt-code-sandbox,fastgpt-agent-sandbox-proxy,fastgpt-aiproxy,fastgpt-aiproxy-pg,fastgpt-minio,fastgpt-mongo,fastgpt-redis,fastgpt-pg,fastgpt-mcp-server,opensandbox-server,fastgpt-volume-manager,host.docker.internal,*.orb.internal,*.orb.local NO_PROXY: localhost,127.0.0.1,::1,fastgpt,fastgpt-plugin,fastgpt-code-sandbox,fastgpt-aiproxy,fastgpt-aiproxy-pg,fastgpt-minio,fastgpt-mongo,fastgpt-redis,fastgpt-pg,fastgpt-mcp-server,opensandbox-server,fastgpt-volume-manager,host.docker.internal,*.orb.internal,*.orb.local
no_proxy: localhost,127.0.0.1,::1,fastgpt,fastgpt-plugin,fastgpt-code-sandbox,fastgpt-agent-sandbox-proxy,fastgpt-aiproxy,fastgpt-aiproxy-pg,fastgpt-minio,fastgpt-mongo,fastgpt-redis,fastgpt-pg,fastgpt-mcp-server,opensandbox-server,fastgpt-volume-manager,host.docker.internal,*.orb.internal,*.orb.local no_proxy: localhost,127.0.0.1,::1,fastgpt,fastgpt-plugin,fastgpt-code-sandbox,fastgpt-aiproxy,fastgpt-aiproxy-pg,fastgpt-minio,fastgpt-mongo,fastgpt-redis,fastgpt-pg,fastgpt-mcp-server,opensandbox-server,fastgpt-volume-manager,host.docker.internal,*.orb.internal,*.orb.local
services: services:
# Vector DB # Vector DB
...@@ -235,24 +233,6 @@ services: ...@@ -235,24 +233,6 @@ services:
interval: 30s interval: 30s
timeout: 20s timeout: 20s
retries: 3 retries: 3
fastgpt-agent-sandbox-proxy:
container_name: fastgpt-agent-sandbox-proxy
image: ghcr.io/labring/fastgpt-agent-sandbox-proxy:v0.2.0-beta2
ports:
- 1006:1006
networks:
- fastgpt
restart: always
extra_hosts:
- 'host.docker.internal:host-gateway'
environment:
<<: [*x-no-proxy-config]
PORT: 1006
# dev compose 不包含 FastGPT 主站,默认回调宿主机本地启动的 app。
FASTGPT_APP_URL: http://host.docker.internal:3000
# 主站返回 localhost upstream endpoint 时,proxy 容器需要改写为宿主机别名再连接。
AGENT_SANDBOX_PROXY_REWRITE_HOST: host.docker.internal
AGENT_SANDBOX_PROXY_SECRET: *x-agent-sandbox-proxy-secret
fastgpt-mcp-server: fastgpt-mcp-server:
container_name: fastgpt-mcp-server container_name: fastgpt-mcp-server
image: registry.cn-hangzhou.aliyuncs.com/fastgpt/fastgpt-mcp_server:v4.15.0-beta1 image: registry.cn-hangzhou.aliyuncs.com/fastgpt/fastgpt-mcp_server:v4.15.0-beta1
...@@ -318,7 +298,7 @@ services: ...@@ -318,7 +298,7 @@ services:
retries: 5 retries: 5
# Pre-pull only: not started by `docker compose up` (uses profile `prepull`). # Pre-pull only: not started by `docker compose up` (uses profile `prepull`).
opensandbox-agent-sandbox-image: opensandbox-agent-sandbox-image:
image: registry.cn-hangzhou.aliyuncs.com/fastgpt/fastgpt-agent-sandbox:v0.2.0-beta2 image: registry.cn-hangzhou.aliyuncs.com/fastgpt/fastgpt-agent-sandbox:v0.2.0
profiles: profiles:
- prepull - prepull
opensandbox-execd-image: opensandbox-execd-image:
......
...@@ -9,12 +9,12 @@ ...@@ -9,12 +9,12 @@
# - fastgpt-mcp-server: 3003 # - fastgpt-mcp-server: 3003
# - fastgpt-plugin: 3004 # - fastgpt-plugin: 3004
# - fastgpt-volume-manager: 3005 # - fastgpt-volume-manager: 3005
# - fastgpt-agent-sandbox-proxy: 1006
# - opensandbox-server: 8090 # - opensandbox-server: 8090
# - fastgpt-aiproxy: 3010 # - fastgpt-aiproxy: 3010
# - fastgpt-aiproxy-pg: 5432 # - fastgpt-aiproxy-pg: 5432
# - 使用 pgvector 作为默认的向量库 # - 使用 pgvector 作为默认的向量库
# - fastgpt-agent-sandbox-proxy 通过端口映射暴露给浏览器,内部回源宿主机服务 # - 配置 opensandbox-config 的 network_mode 为 docker 网络,如 dev_fastgpt
# - 配置 opensandbox-config 的 host_ip 为宿主机 LAN IP,如 192.168.1.100
# plugin auth token # plugin auth token
x-plugin-auth-token: &x-plugin-auth-token 'token' x-plugin-auth-token: &x-plugin-auth-token 'token'
...@@ -22,8 +22,6 @@ x-plugin-auth-token: &x-plugin-auth-token 'token' ...@@ -22,8 +22,6 @@ x-plugin-auth-token: &x-plugin-auth-token 'token'
x-code-sandbox-token: &x-code-sandbox-token 'codesandbox' x-code-sandbox-token: &x-code-sandbox-token 'codesandbox'
# volume manager auth token # volume manager auth token
x-volume-manager-auth-token: &x-volume-manager-auth-token 'vmtoken' x-volume-manager-auth-token: &x-volume-manager-auth-token 'vmtoken'
# agent sandbox proxy secret, must match AGENT_SANDBOX_PROXY_SECRET in local FastGPT app
x-agent-sandbox-proxy-secret: &x-agent-sandbox-proxy-secret 'default_fastgpt_agent_sandbox_proxy_secret'
# aiproxy token # aiproxy token
x-aiproxy-token: &x-aiproxy-token 'token' x-aiproxy-token: &x-aiproxy-token 'token'
# 数据库连接相关配置 # 数据库连接相关配置
...@@ -52,8 +50,8 @@ x-log-config: &x-log-config ...@@ -52,8 +50,8 @@ x-log-config: &x-log-config
# 容器运行环境可能会自动注入 HTTP_PROXY/HTTPS_PROXY。 # 容器运行环境可能会自动注入 HTTP_PROXY/HTTPS_PROXY。
# 明确绕过 compose 内部服务,避免内部请求被代理劫持。 # 明确绕过 compose 内部服务,避免内部请求被代理劫持。
x-no-proxy-config: &x-no-proxy-config x-no-proxy-config: &x-no-proxy-config
NO_PROXY: localhost,127.0.0.1,::1,fastgpt,fastgpt-plugin,fastgpt-code-sandbox,fastgpt-agent-sandbox-proxy,fastgpt-aiproxy,fastgpt-aiproxy-pg,fastgpt-minio,fastgpt-mongo,fastgpt-redis,fastgpt-pg,fastgpt-mcp-server,opensandbox-server,fastgpt-volume-manager,host.docker.internal,*.orb.internal,*.orb.local NO_PROXY: localhost,127.0.0.1,::1,fastgpt,fastgpt-plugin,fastgpt-code-sandbox,fastgpt-aiproxy,fastgpt-aiproxy-pg,fastgpt-minio,fastgpt-mongo,fastgpt-redis,fastgpt-pg,fastgpt-mcp-server,opensandbox-server,fastgpt-volume-manager,host.docker.internal,*.orb.internal,*.orb.local
no_proxy: localhost,127.0.0.1,::1,fastgpt,fastgpt-plugin,fastgpt-code-sandbox,fastgpt-agent-sandbox-proxy,fastgpt-aiproxy,fastgpt-aiproxy-pg,fastgpt-minio,fastgpt-mongo,fastgpt-redis,fastgpt-pg,fastgpt-mcp-server,opensandbox-server,fastgpt-volume-manager,host.docker.internal,*.orb.internal,*.orb.local no_proxy: localhost,127.0.0.1,::1,fastgpt,fastgpt-plugin,fastgpt-code-sandbox,fastgpt-aiproxy,fastgpt-aiproxy-pg,fastgpt-minio,fastgpt-mongo,fastgpt-redis,fastgpt-pg,fastgpt-mcp-server,opensandbox-server,fastgpt-volume-manager,host.docker.internal,*.orb.internal,*.orb.local
services: services:
# Vector DB # Vector DB
...@@ -235,24 +233,6 @@ services: ...@@ -235,24 +233,6 @@ services:
interval: 30s interval: 30s
timeout: 20s timeout: 20s
retries: 3 retries: 3
fastgpt-agent-sandbox-proxy:
container_name: fastgpt-agent-sandbox-proxy
image: ghcr.io/labring/fastgpt-agent-sandbox-proxy:v0.2.0-beta2
ports:
- 1006:1006
networks:
- fastgpt
restart: always
extra_hosts:
- 'host.docker.internal:host-gateway'
environment:
<<: [*x-no-proxy-config]
PORT: 1006
# dev compose 不包含 FastGPT 主站,默认回调宿主机本地启动的 app。
FASTGPT_APP_URL: http://host.docker.internal:3000
# 主站返回 localhost upstream endpoint 时,proxy 容器需要改写为宿主机别名再连接。
AGENT_SANDBOX_PROXY_REWRITE_HOST: host.docker.internal
AGENT_SANDBOX_PROXY_SECRET: *x-agent-sandbox-proxy-secret
fastgpt-mcp-server: fastgpt-mcp-server:
container_name: fastgpt-mcp-server container_name: fastgpt-mcp-server
image: ghcr.io/labring/fastgpt-mcp_server:v4.15.0-beta1 image: ghcr.io/labring/fastgpt-mcp_server:v4.15.0-beta1
...@@ -318,7 +298,7 @@ services: ...@@ -318,7 +298,7 @@ services:
retries: 5 retries: 5
# Pre-pull only: not started by `docker compose up` (uses profile `prepull`). # Pre-pull only: not started by `docker compose up` (uses profile `prepull`).
opensandbox-agent-sandbox-image: opensandbox-agent-sandbox-image:
image: ghcr.io/labring/fastgpt-agent-sandbox:v0.2.0-beta2 image: ghcr.io/labring/fastgpt-agent-sandbox:v0.2.0
profiles: profiles:
- prepull - prepull
opensandbox-execd-image: opensandbox-execd-image:
......
{ {
"tags": { "tags": {
"fastgpt": "v4.14.22", "fastgpt": "v4.14.26",
"fastgpt-code-sandbox": "v4.14.22", "fastgpt-code-sandbox": "v4.14.22",
"fastgpt-mcp_server": "v4.14.22", "fastgpt-mcp_server": "v4.14.22",
"fastgpt-plugin": "v0.6.2", "fastgpt-plugin": "v0.6.2",
"volume-manager": "v0.1.2", "volume-manager": "v0.1.2",
"agent-sandbox-image": "v0.1.2", "agent-sandbox-image": "v0.1.2",
"aiproxy": "v0.5.8", "aiproxy": "v0.6.2",
"opensandbox-server": "v0.1.9", "opensandbox-server": "v0.1.9",
"opensandbox-execd": "v1.0.7", "opensandbox-execd": "v1.0.7",
......
---
title: 'V4.14.26'
description: 'FastGPT V4.14.26 release notes'
---
## Upgrade Guide
### 1. Update image tags
- Update the fastgpt-app image tag (FastGPT main service): v4.14.26
- Update the fastgpt-pro image tag (FastGPT commercial edition): v4.14.26
## Changes
1. Pinned the Node.js version to avoid streaming response issues caused by automatically using the latest Node.js.
---
title: 'V4.14.26'
description: 'FastGPT V4.14.26 更新说明'
---
## 升级指南
### 1. 更新镜像 tag
- 更新 fastgpt-app(fastgpt 主服务) 镜像 tag: v4.14.26
- 更新 fastgpt-pro(fastgpt 商业版) 镜像 tag: v4.14.26
## 变更说明
1. 锁定 Node.js 版本,避免使用最新 Node.js 导致流式响应接收异常。
...@@ -2,6 +2,7 @@ ...@@ -2,6 +2,7 @@
"title": "4.14.x", "title": "4.14.x",
"description": "", "description": "",
"pages": [ "pages": [
"41426",
"41425", "41425",
"41424", "41424",
"41422", "41422",
......
...@@ -2,6 +2,7 @@ ...@@ -2,6 +2,7 @@
"title": "4.14.x", "title": "4.14.x",
"description": "", "description": "",
"pages": [ "pages": [
"41426",
"41425", "41425",
"41424", "41424",
"41422", "41422",
......
...@@ -137,6 +137,7 @@ description: FastGPT Toc ...@@ -137,6 +137,7 @@ description: FastGPT Toc
- [/en/self-host/upgrading/4-14/41422](/en/self-host/upgrading/4-14/41422) - [/en/self-host/upgrading/4-14/41422](/en/self-host/upgrading/4-14/41422)
- [/en/self-host/upgrading/4-14/41424](/en/self-host/upgrading/4-14/41424) - [/en/self-host/upgrading/4-14/41424](/en/self-host/upgrading/4-14/41424)
- [/en/self-host/upgrading/4-14/41425](/en/self-host/upgrading/4-14/41425) - [/en/self-host/upgrading/4-14/41425](/en/self-host/upgrading/4-14/41425)
- [/en/self-host/upgrading/4-14/41426](/en/self-host/upgrading/4-14/41426)
- [/en/self-host/upgrading/4-14/4143](/en/self-host/upgrading/4-14/4143) - [/en/self-host/upgrading/4-14/4143](/en/self-host/upgrading/4-14/4143)
- [/en/self-host/upgrading/4-14/4144](/en/self-host/upgrading/4-14/4144) - [/en/self-host/upgrading/4-14/4144](/en/self-host/upgrading/4-14/4144)
- [/en/self-host/upgrading/4-14/4145](/en/self-host/upgrading/4-14/4145) - [/en/self-host/upgrading/4-14/4145](/en/self-host/upgrading/4-14/4145)
......
...@@ -139,6 +139,7 @@ description: FastGPT 文档目录 ...@@ -139,6 +139,7 @@ description: FastGPT 文档目录
- [/self-host/upgrading/4-14/41422](/self-host/upgrading/4-14/41422) - [/self-host/upgrading/4-14/41422](/self-host/upgrading/4-14/41422)
- [/self-host/upgrading/4-14/41424](/self-host/upgrading/4-14/41424) - [/self-host/upgrading/4-14/41424](/self-host/upgrading/4-14/41424)
- [/self-host/upgrading/4-14/41425](/self-host/upgrading/4-14/41425) - [/self-host/upgrading/4-14/41425](/self-host/upgrading/4-14/41425)
- [/self-host/upgrading/4-14/41426](/self-host/upgrading/4-14/41426)
- [/self-host/upgrading/4-14/4143](/self-host/upgrading/4-14/4143) - [/self-host/upgrading/4-14/4143](/self-host/upgrading/4-14/4143)
- [/self-host/upgrading/4-14/4144](/self-host/upgrading/4-14/4144) - [/self-host/upgrading/4-14/4144](/self-host/upgrading/4-14/4144)
- [/self-host/upgrading/4-14/4145](/self-host/upgrading/4-14/4145) - [/self-host/upgrading/4-14/4145](/self-host/upgrading/4-14/4145)
......
...@@ -197,8 +197,8 @@ ...@@ -197,8 +197,8 @@
"content/self-host/custom-models/ollama.mdx": "2026-04-26T21:08:47+08:00", "content/self-host/custom-models/ollama.mdx": "2026-04-26T21:08:47+08:00",
"content/self-host/custom-models/xinference.en.mdx": "2026-04-26T21:08:47+08:00", "content/self-host/custom-models/xinference.en.mdx": "2026-04-26T21:08:47+08:00",
"content/self-host/custom-models/xinference.mdx": "2026-04-26T21:08:47+08:00", "content/self-host/custom-models/xinference.mdx": "2026-04-26T21:08:47+08:00",
"content/self-host/deploy/docker.en.mdx": "2026-06-24T18:21:36+08:00", "content/self-host/deploy/docker.en.mdx": "2026-06-24T18:24:40+08:00",
"content/self-host/deploy/docker.mdx": "2026-06-24T18:21:36+08:00", "content/self-host/deploy/docker.mdx": "2026-06-24T18:24:40+08:00",
"content/self-host/deploy/sealos.en.mdx": "2026-04-26T21:08:47+08:00", "content/self-host/deploy/sealos.en.mdx": "2026-04-26T21:08:47+08:00",
"content/self-host/deploy/sealos.mdx": "2026-04-26T21:08:47+08:00", "content/self-host/deploy/sealos.mdx": "2026-04-26T21:08:47+08:00",
"content/self-host/design/dataset.en.mdx": "2026-04-26T21:08:47+08:00", "content/self-host/design/dataset.en.mdx": "2026-04-26T21:08:47+08:00",
......
...@@ -195,7 +195,7 @@ services: ...@@ -195,7 +195,7 @@ services:
fastgpt-app: fastgpt-app:
container_name: fastgpt-app container_name: fastgpt-app
image: registry.cn-hangzhou.aliyuncs.com/fastgpt/fastgpt:v4.14.22 image: registry.cn-hangzhou.aliyuncs.com/fastgpt/fastgpt:v4.14.26
ports: ports:
- 3000:3000 - 3000:3000
networks: networks:
...@@ -435,7 +435,7 @@ services: ...@@ -435,7 +435,7 @@ services:
# AI Proxy # AI Proxy
fastgpt-aiproxy: fastgpt-aiproxy:
image: registry.cn-hangzhou.aliyuncs.com/labring/aiproxy:v0.5.8 image: registry.cn-hangzhou.aliyuncs.com/labring/aiproxy:v0.6.2
container_name: fastgpt-aiproxy container_name: fastgpt-aiproxy
restart: unless-stopped restart: unless-stopped
depends_on: depends_on:
......
...@@ -173,7 +173,7 @@ services: ...@@ -173,7 +173,7 @@ services:
fastgpt-app: fastgpt-app:
container_name: fastgpt-app container_name: fastgpt-app
image: registry.cn-hangzhou.aliyuncs.com/fastgpt/fastgpt:v4.14.22 image: registry.cn-hangzhou.aliyuncs.com/fastgpt/fastgpt:v4.14.26
ports: ports:
- 3000:3000 - 3000:3000
networks: networks:
...@@ -413,7 +413,7 @@ services: ...@@ -413,7 +413,7 @@ services:
# AI Proxy # AI Proxy
fastgpt-aiproxy: fastgpt-aiproxy:
image: registry.cn-hangzhou.aliyuncs.com/labring/aiproxy:v0.5.8 image: registry.cn-hangzhou.aliyuncs.com/labring/aiproxy:v0.6.2
container_name: fastgpt-aiproxy container_name: fastgpt-aiproxy
restart: unless-stopped restart: unless-stopped
depends_on: depends_on:
......
...@@ -157,7 +157,7 @@ services: ...@@ -157,7 +157,7 @@ services:
fastgpt-app: fastgpt-app:
container_name: fastgpt-app container_name: fastgpt-app
image: registry.cn-hangzhou.aliyuncs.com/fastgpt/fastgpt:v4.14.22 image: registry.cn-hangzhou.aliyuncs.com/fastgpt/fastgpt:v4.14.26
ports: ports:
- 3000:3000 - 3000:3000
networks: networks:
...@@ -397,7 +397,7 @@ services: ...@@ -397,7 +397,7 @@ services:
# AI Proxy # AI Proxy
fastgpt-aiproxy: fastgpt-aiproxy:
image: registry.cn-hangzhou.aliyuncs.com/labring/aiproxy:v0.5.8 image: registry.cn-hangzhou.aliyuncs.com/labring/aiproxy:v0.6.2
container_name: fastgpt-aiproxy container_name: fastgpt-aiproxy
restart: unless-stopped restart: unless-stopped
depends_on: depends_on:
......
...@@ -155,7 +155,7 @@ services: ...@@ -155,7 +155,7 @@ services:
fastgpt-app: fastgpt-app:
container_name: fastgpt-app container_name: fastgpt-app
image: registry.cn-hangzhou.aliyuncs.com/fastgpt/fastgpt:v4.14.22 image: registry.cn-hangzhou.aliyuncs.com/fastgpt/fastgpt:v4.14.26
ports: ports:
- 3000:3000 - 3000:3000
networks: networks:
...@@ -395,7 +395,7 @@ services: ...@@ -395,7 +395,7 @@ services:
# AI Proxy # AI Proxy
fastgpt-aiproxy: fastgpt-aiproxy:
image: registry.cn-hangzhou.aliyuncs.com/labring/aiproxy:v0.5.8 image: registry.cn-hangzhou.aliyuncs.com/labring/aiproxy:v0.6.2
container_name: fastgpt-aiproxy container_name: fastgpt-aiproxy
restart: unless-stopped restart: unless-stopped
depends_on: depends_on:
......
...@@ -160,7 +160,7 @@ services: ...@@ -160,7 +160,7 @@ services:
fastgpt-app: fastgpt-app:
container_name: fastgpt-app container_name: fastgpt-app
image: registry.cn-hangzhou.aliyuncs.com/fastgpt/fastgpt:v4.14.22 image: registry.cn-hangzhou.aliyuncs.com/fastgpt/fastgpt:v4.14.26
ports: ports:
- 3000:3000 - 3000:3000
networks: networks:
...@@ -400,7 +400,7 @@ services: ...@@ -400,7 +400,7 @@ services:
# AI Proxy # AI Proxy
fastgpt-aiproxy: fastgpt-aiproxy:
image: registry.cn-hangzhou.aliyuncs.com/labring/aiproxy:v0.5.8 image: registry.cn-hangzhou.aliyuncs.com/labring/aiproxy:v0.6.2
container_name: fastgpt-aiproxy container_name: fastgpt-aiproxy
restart: unless-stopped restart: unless-stopped
depends_on: depends_on:
......
...@@ -139,7 +139,7 @@ services: ...@@ -139,7 +139,7 @@ services:
fastgpt-app: fastgpt-app:
container_name: fastgpt-app container_name: fastgpt-app
image: registry.cn-hangzhou.aliyuncs.com/fastgpt/fastgpt:v4.14.22 image: registry.cn-hangzhou.aliyuncs.com/fastgpt/fastgpt:v4.14.26
ports: ports:
- 3000:3000 - 3000:3000
networks: networks:
...@@ -379,7 +379,7 @@ services: ...@@ -379,7 +379,7 @@ services:
# AI Proxy # AI Proxy
fastgpt-aiproxy: fastgpt-aiproxy:
image: registry.cn-hangzhou.aliyuncs.com/labring/aiproxy:v0.5.8 image: registry.cn-hangzhou.aliyuncs.com/labring/aiproxy:v0.6.2
container_name: fastgpt-aiproxy container_name: fastgpt-aiproxy
restart: unless-stopped restart: unless-stopped
depends_on: depends_on:
......
...@@ -195,7 +195,7 @@ services: ...@@ -195,7 +195,7 @@ services:
fastgpt-app: fastgpt-app:
container_name: fastgpt-app container_name: fastgpt-app
image: ghcr.io/labring/fastgpt:v4.14.22 image: ghcr.io/labring/fastgpt:v4.14.26
ports: ports:
- 3000:3000 - 3000:3000
networks: networks:
...@@ -435,7 +435,7 @@ services: ...@@ -435,7 +435,7 @@ services:
# AI Proxy # AI Proxy
fastgpt-aiproxy: fastgpt-aiproxy:
image: ghcr.io/labring/aiproxy:v0.5.8 image: ghcr.io/labring/aiproxy:v0.6.2
container_name: fastgpt-aiproxy container_name: fastgpt-aiproxy
restart: unless-stopped restart: unless-stopped
depends_on: depends_on:
......
...@@ -173,7 +173,7 @@ services: ...@@ -173,7 +173,7 @@ services:
fastgpt-app: fastgpt-app:
container_name: fastgpt-app container_name: fastgpt-app
image: ghcr.io/labring/fastgpt:v4.14.22 image: ghcr.io/labring/fastgpt:v4.14.26
ports: ports:
- 3000:3000 - 3000:3000
networks: networks:
...@@ -413,7 +413,7 @@ services: ...@@ -413,7 +413,7 @@ services:
# AI Proxy # AI Proxy
fastgpt-aiproxy: fastgpt-aiproxy:
image: ghcr.io/labring/aiproxy:v0.5.8 image: ghcr.io/labring/aiproxy:v0.6.2
container_name: fastgpt-aiproxy container_name: fastgpt-aiproxy
restart: unless-stopped restart: unless-stopped
depends_on: depends_on:
......
...@@ -157,7 +157,7 @@ services: ...@@ -157,7 +157,7 @@ services:
fastgpt-app: fastgpt-app:
container_name: fastgpt-app container_name: fastgpt-app
image: ghcr.io/labring/fastgpt:v4.14.22 image: ghcr.io/labring/fastgpt:v4.14.26
ports: ports:
- 3000:3000 - 3000:3000
networks: networks:
...@@ -397,7 +397,7 @@ services: ...@@ -397,7 +397,7 @@ services:
# AI Proxy # AI Proxy
fastgpt-aiproxy: fastgpt-aiproxy:
image: ghcr.io/labring/aiproxy:v0.5.8 image: ghcr.io/labring/aiproxy:v0.6.2
container_name: fastgpt-aiproxy container_name: fastgpt-aiproxy
restart: unless-stopped restart: unless-stopped
depends_on: depends_on:
......
...@@ -155,7 +155,7 @@ services: ...@@ -155,7 +155,7 @@ services:
fastgpt-app: fastgpt-app:
container_name: fastgpt-app container_name: fastgpt-app
image: ghcr.io/labring/fastgpt:v4.14.22 image: ghcr.io/labring/fastgpt:v4.14.26
ports: ports:
- 3000:3000 - 3000:3000
networks: networks:
...@@ -395,7 +395,7 @@ services: ...@@ -395,7 +395,7 @@ services:
# AI Proxy # AI Proxy
fastgpt-aiproxy: fastgpt-aiproxy:
image: ghcr.io/labring/aiproxy:v0.5.8 image: ghcr.io/labring/aiproxy:v0.6.2
container_name: fastgpt-aiproxy container_name: fastgpt-aiproxy
restart: unless-stopped restart: unless-stopped
depends_on: depends_on:
......
...@@ -160,7 +160,7 @@ services: ...@@ -160,7 +160,7 @@ services:
fastgpt-app: fastgpt-app:
container_name: fastgpt-app container_name: fastgpt-app
image: ghcr.io/labring/fastgpt:v4.14.22 image: ghcr.io/labring/fastgpt:v4.14.26
ports: ports:
- 3000:3000 - 3000:3000
networks: networks:
...@@ -400,7 +400,7 @@ services: ...@@ -400,7 +400,7 @@ services:
# AI Proxy # AI Proxy
fastgpt-aiproxy: fastgpt-aiproxy:
image: ghcr.io/labring/aiproxy:v0.5.8 image: ghcr.io/labring/aiproxy:v0.6.2
container_name: fastgpt-aiproxy container_name: fastgpt-aiproxy
restart: unless-stopped restart: unless-stopped
depends_on: depends_on:
......
...@@ -139,7 +139,7 @@ services: ...@@ -139,7 +139,7 @@ services:
fastgpt-app: fastgpt-app:
container_name: fastgpt-app container_name: fastgpt-app
image: ghcr.io/labring/fastgpt:v4.14.22 image: ghcr.io/labring/fastgpt:v4.14.26
ports: ports:
- 3000:3000 - 3000:3000
networks: networks:
...@@ -379,7 +379,7 @@ services: ...@@ -379,7 +379,7 @@ services:
# AI Proxy # AI Proxy
fastgpt-aiproxy: fastgpt-aiproxy:
image: ghcr.io/labring/aiproxy:v0.5.8 image: ghcr.io/labring/aiproxy:v0.6.2
container_name: fastgpt-aiproxy container_name: fastgpt-aiproxy
restart: unless-stopped restart: unless-stopped
depends_on: depends_on:
......
Subproject commit 0103ae5b530380c8452abb2a479b49a3e767bf8d Subproject commit 9770addfa4f270f507921328e2c2cfa9d446b381
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment