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
0d47618d
authored
Feb 13, 2026
by
Archer
Committed by
GitHub
Feb 13, 2026
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
doc (#6430)
parent
e5a791e4
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
12 additions
and
17 deletions
+12
-17
document/content/docs/introduction/development/docker.mdx
+5
-13
document/data/doc-last-modified.json
+1
-1
document/public/deploy/install.sh
+6
-3
No files found.
document/content/docs/introduction/development/docker.mdx
View file @
0d47618d
...
...
@@ -161,14 +161,7 @@ bash <(curl -fsSL https://doc.fastgpt.cn/deploy/install.sh)
### 2. 修改环境变量
1. 按照您的需求自行修改环境变量,建议在生产环境修改账号密码等。
2. 对于 Zilliz 版本 还需要获取密钥,参考 [部署 Zilliz 版本获取账号和密钥](#部署-zilliz-版本获取账号和密钥)
### 3. 修改 config.json 配置文件
修改`config.json`文件中的`mcpServerProxyEndpoint`值,设置成`mcp server`的公网可访问地址,yml 文件中默认给出了映射到 3005 端口,如通过 IP 访问,则可能是:`120.172.2.10:3005`。
对于 `Zilliz 版本` 还需要获取密钥,参考 [部署 Zilliz 版本获取账号和密钥](#部署-zilliz-版本获取账号和密钥), 其他版本可直接下一步。
### 3. 开放外网端口/配置域名
...
...
@@ -178,7 +171,7 @@ bash <(curl -fsSL https://doc.fastgpt.cn/deploy/install.sh)
2. 9000 端口(S3 服务)
1. 3005 端口(FastGPT SSE MCP server 服务)
###
6
. 启动容器
###
4
. 启动容器
在 docker-compose.yml 同级目录下执行。请确保`docker-compose`版本最好在2.17以上,否则可能无法执行自动化命令。
...
...
@@ -187,19 +180,19 @@ bash <(curl -fsSL https://doc.fastgpt.cn/deploy/install.sh)
docker-compose up -d
```
###
7
. 访问 FastGPT
###
5
. 访问 FastGPT
可通过第二步开放的端口/域名访问 FastGPT。
登录用户名为 `root`,密码为`docker-compose.yml`环境变量里设置的 `DEFAULT_ROOT_PSW`。
每次重启容器,都会自动初始化 root 用户,密码为 `1234`(与环境变量中的`DEFAULT_ROOT_PSW`一致)。
###
8
. 配置模型
###
6
. 配置模型
- 首次登录FastGPT后,系统会提示未配置`语言模型`和`索引模型`,并自动跳转模型配置页面。系统必须至少有这两类模型才能正常使用。
- 如果系统未正常跳转,可以在`账号-模型提供商`页面,进行模型配置。[点击查看相关教程](/docs/introduction/development/modelConfig/ai-proxy)
- 目前已知可能问题:首次进入系统后,整个浏览器 tab 无法响应。此时需要删除该tab,重新打开一次即可。
###
9.
安装系统插件
###
7. 按需
安装系统插件
从 V4.14.0 版本开始,fastgpt-plugin 镜像仅提供运行环境,不再预装系统插件,所有 FastGPT 系统需手动安装系统插件。
...
...
@@ -209,7 +202,6 @@ docker-compose up -d

## FAQ
### FastGPT 和 FastGPT-plugin 版本对应
...
...
document/data/doc-last-modified.json
View file @
0d47618d
...
...
@@ -123,7 +123,7 @@
"document/content/docs/upgrading/4-14/4145.mdx"
:
"2026-01-18T23:59:15+08:00"
,
"document/content/docs/upgrading/4-14/41451.mdx"
:
"2026-01-20T11:53:27+08:00"
,
"document/content/docs/upgrading/4-14/4146.mdx"
:
"2026-02-12T16:37:50+08:00"
,
"document/content/docs/upgrading/4-14/4147.mdx"
:
"2026-02-1
2T18:02
:02+08:00"
,
"document/content/docs/upgrading/4-14/4147.mdx"
:
"2026-02-1
3T11:23
:02+08:00"
,
"document/content/docs/upgrading/4-8/40.mdx"
:
"2025-08-02T19:38:37+08:00"
,
"document/content/docs/upgrading/4-8/41.mdx"
:
"2025-08-02T19:38:37+08:00"
,
"document/content/docs/upgrading/4-8/42.mdx"
:
"2025-08-02T19:38:37+08:00"
,
...
...
document/public/deploy/install.sh
View file @
0d47618d
...
...
@@ -257,8 +257,11 @@ fi
# ========== 完成 ==========
echo
""
echo
"安装完成! 后续操作:"
echo
" 1. 编辑配置: vim docker-compose.yml"
echo
" 2. 启动服务: docker compose up -d"
echo
"配置下载成功! 后续操作:"
echo
" 1. 启动服务: docker compose up -d"
echo
" 2. 开放端口: 3000, 9000, 3005"
echo
" 3. 访问服务: http://localhost:3000"
echo
" 4. 登录服务: 默认账号为 'root', 密码为: '1234'"
echo
" 5. 配置模型: 在 '账号-模型提供商' 页面,进行模型配置"
echo
""
echo
"详细文档: https://doc.fastgpt.cn/docs/introduction/development/docker"
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