-
Notifications
You must be signed in to change notification settings - Fork 324
Expand file tree
/
Copy pathdocker-compose-cu130.yml
More file actions
32 lines (32 loc) · 855 Bytes
/
Copy pathdocker-compose-cu130.yml
File metadata and controls
32 lines (32 loc) · 855 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
services:
chatterbox-tts-server:
build:
context: .
dockerfile: Dockerfile.cu130
args:
RUNTIME: nvidia
image: chatterbox-tts-server:cu130
container_name: chatterbox-tts-server-cu130
ports:
- "8004:8004"
volumes:
- ./model_cache:/app/model_cache
- ./reference_audio:/app/reference_audio
- ./outputs:/app/outputs
- ./voices:/app/voices
- ./logs:/app/logs
- ./config.yaml:/app/config.yaml
- ~/.cache/huggingface:/app/hf_cache
env_file: .env
environment:
- HF_TOKEN=${HF_TOKEN}
- NVIDIA_VISIBLE_DEVICES=all
- NVIDIA_DRIVER_CAPABILITIES=compute,utility
deploy:
resources:
reservations:
devices:
- driver: nvidia
count: all
capabilities: [gpu]
restart: unless-stopped