Files
xiaozhi-esp32-server/docker-compose.yml
T

17 lines
481 B
YAML
Raw Normal View History

2025-02-13 17:06:48 +08:00
services:
xiaozhi-esp32-server:
2025-02-23 14:38:21 +08:00
image: ghcr.nju.edu.cn/xinnan-tech/xiaozhi-esp32-server:latest
2025-02-13 17:06:48 +08:00
container_name: xiaozhi-esp32-server
restart: always
2025-02-23 14:38:21 +08:00
security_opt:
- seccomp:unconfined
2025-02-13 17:06:48 +08:00
ports:
2025-02-23 14:38:21 +08:00
# ws服务端
2025-02-14 23:09:12 +08:00
- "8000:8000"
2025-02-23 14:38:21 +08:00
# 管理后台
2025-02-18 15:46:57 +08:00
- "8002:8002"
2025-02-13 17:06:48 +08:00
volumes:
2025-02-23 14:38:21 +08:00
# 配置文件目录
2025-02-20 10:56:51 +08:00
- ./data:/app/data
2025-02-23 14:38:21 +08:00
# 模型文件挂接,很重要
2025-02-20 10:56:51 +08:00
- ./models/SenseVoiceSmall/model.pt:/app/models/SenseVoiceSmall/model.pt