Skip to content

Commit c8c45d0

Browse files
committed
taskingai
1 parent 914c7f1 commit c8c45d0

File tree

4 files changed

+8
-9
lines changed

4 files changed

+8
-9
lines changed

apps/taskingai/.env

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
W9_REPO=nginx
1+
W9_REPO=taskingai/taskingai-server
22
W9_DIST='community'
3-
W9_VERSION='1.24'
3+
W9_VERSION='v0.3.0'
44
W9_POWER_PASSWORD='247b0951a5115cfe7eb0458e'
55
W9_ID='taskingai'
66

apps/taskingai/Notes.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,7 @@ TaskingAI 是一个开源的 AI 任务管理平台,旨在帮助团队和个人
77

88
1. 安装后通过默认账户登录
99
2. 从模型提供商处获取 API 密钥,并在 TaskingAI 的Models标签页中添加模型
10-
3. (可选)在 Retrieval 标签页中添加检索源,如知识库或文档(注意需要先按2.中步骤添加一个嵌入模型)
11-
4. (可选)在 Tools 标签页中添加工具,如网页搜索、GitHub 搜索等
12-
5. 使用 SDK 调用 TaskingAI API
10+
3. Nginx 容器补不能删除,删除后应用无法运行
1311

1412
# 配置选项
1513

apps/taskingai/docker-compose.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
services:
55
nginx:
6-
image: ${W9_REPO}:${W9_VERSION}
6+
image: nginx:1.24
77
container_name: ${W9_ID}
88
env_file:
99
- .env
@@ -51,7 +51,7 @@ services:
5151
- backend-inference
5252

5353
backend-api:
54-
image: taskingai/taskingai-server:v0.3.0
54+
image: $W9_REPO:$W9_VERSION
5555
container_name: backend-api-${W9_ID}
5656
restart: unless-stopped
5757
environment:
@@ -73,7 +73,7 @@ services:
7373
- backend-plugin
7474

7575
backend-web:
76-
image: taskingai/taskingai-server:v0.3.0
76+
image: $W9_REPO:$W9_VERSION
7777
container_name: backend-web-${W9_ID}
7878
restart: unless-stopped
7979
environment:

apps/taskingai/variables.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,8 @@
88
{
99
"dist": "community",
1010
"version": [
11-
"1.24"
11+
"v0.3.0",
12+
"latest"
1213
]
1314
}
1415
],

0 commit comments

Comments
 (0)