update bash

This commit is contained in:
archer
2023-09-04 17:51:56 +08:00
parent 3449024678
commit 1207e3e566
3 changed files with 8 additions and 4 deletions

View File

@@ -39,9 +39,13 @@ const defaultFeConfigs = {
show_register: false, show_register: false,
show_appStore: false, show_appStore: false,
show_userDetail: false, show_userDetail: false,
show_contact: true,
show_git: true, show_git: true,
show_doc: true,
systemTitle: 'FastGPT', systemTitle: 'FastGPT',
authorText: 'Made by FastGPT Team.' authorText: 'Made by FastGPT Team.',
gitLoginKey: '',
scripts: []
}; };
const defaultChatModels = [ const defaultChatModels = [
{ {

View File

@@ -146,7 +146,7 @@ networks:
```bash ```bash
# 在 docker-compose.yml 同级目录下执行 # 在 docker-compose.yml 同级目录下执行
docker-compose up -d docker-compose up -d --pull
``` ```
## 访问 FastGPT ## 访问 FastGPT
@@ -159,7 +159,7 @@ docker-compose up -d
### 如何更新? ### 如何更新?
执行 `docker-compose up -d` 会自动拉取最新镜像,一般情况下不需要执行额外操作。 执行 `docker-compose up -d --pull` 会自动拉取最新镜像,一般情况下不需要执行额外操作。
### 如何自定义配置文件? ### 如何自定义配置文件?

View File

@@ -1,6 +1,6 @@
#!/bin/bash #!/bin/bash
docker-compose pull docker-compose pull
docker-compose up -d docker-compose up -d --pull
echo "Docker Compose 重新拉取镜像完成!" echo "Docker Compose 重新拉取镜像完成!"