AnthonyT
commited on
Commit
·
1a573c7
1
Parent(s):
7b3dca2
Add missing directory to Docker container mount
Browse filesA previously omitted directory '~/examples' was missing from the Docker container mount configuration. This has now been added to ensure proper functionality.
.container/docker-compose.yml
CHANGED
@@ -12,6 +12,8 @@ services:
|
|
12 |
volumes:
|
13 |
# 挂载.env文件,方便配置API密钥
|
14 |
- ../owl/.env:/app/owl/.env
|
|
|
|
|
15 |
# 挂载数据目录
|
16 |
- ./data:/app/owl/data
|
17 |
# 挂载缓存目录,避免重复下载
|
@@ -37,4 +39,4 @@ services:
|
|
37 |
# 定义持久化卷,用于缓存 | Define persistent volumes for caching
|
38 |
volumes:
|
39 |
playwright-cache:
|
40 |
-
pip-cache:
|
|
|
12 |
volumes:
|
13 |
# 挂载.env文件,方便配置API密钥
|
14 |
- ../owl/.env:/app/owl/.env
|
15 |
+
# 挂载example文件夹,以支持docker容器内运行代码案例
|
16 |
+
- ../examples:/app/examples
|
17 |
# 挂载数据目录
|
18 |
- ./data:/app/owl/data
|
19 |
# 挂载缓存目录,避免重复下载
|
|
|
39 |
# 定义持久化卷,用于缓存 | Define persistent volumes for caching
|
40 |
volumes:
|
41 |
playwright-cache:
|
42 |
+
pip-cache:
|