Add missing directory to Docker container mount

A previously omitted directory '~/examples' was missing from the Docker container mount configuration. This has now been added to ensure proper functionality.
This commit is contained in:
AnthonyT
2025-03-17 12:18:06 +08:00
committed by GitHub
parent 1ddf8c27e6
commit 606b8799fb

View File

@@ -12,6 +12,8 @@ services:
volumes:
# 挂载.env文件方便配置API密钥
- ../owl/.env:/app/owl/.env
# 挂载example文件夹以支持docker容器内运行代码案例
- ../examples:/app/examples
# 挂载数据目录
- ./data:/app/owl/data
# 挂载缓存目录,避免重复下载