Files
live-voice-chat/docker-compose.yml
T
2026-04-08 03:05:26 -04:00

19 lines
381 B
YAML

services:
voice-chat:
build: .
ports:
- "8000:8000"
volumes:
# Cache models on the host so they survive container rebuilds
- huggingface-cache:/cache/huggingface
deploy:
resources:
reservations:
devices:
- driver: nvidia
count: 1
capabilities: [gpu]
volumes:
huggingface-cache: