- Chatterbox TTS Server (Multilingual, 23 Sprachen, Voice Cloning) - Whisper STT Server (faster-whisper-small, CPU) - RTX 4060 GPU auf Tdarr VM (node2, 10.2.1.104) - Voice Profile: chantal.wav - Chantal Telegram Voice Integration
37 lines
894 B
YAML
37 lines
894 B
YAML
services:
|
|
chatterbox-tts:
|
|
build:
|
|
context: https://github.com/devnen/Chatterbox-TTS-Server.git
|
|
container_name: chatterbox-tts
|
|
restart: unless-stopped
|
|
ports:
|
|
- "8004:8004"
|
|
volumes:
|
|
- ./config.yaml:/app/config.yaml
|
|
- ./voices:/app/voices
|
|
- ./reference_audio:/app/reference_audio
|
|
- ./outputs:/app/outputs
|
|
- hf_cache:/app/hf_cache
|
|
deploy:
|
|
resources:
|
|
reservations:
|
|
devices:
|
|
- driver: nvidia
|
|
count: all
|
|
capabilities: [gpu]
|
|
|
|
whisper:
|
|
image: fedirz/faster-whisper-server:latest-cpu
|
|
container_name: whisper
|
|
restart: unless-stopped
|
|
ports:
|
|
- "8005:8000"
|
|
volumes:
|
|
- whisper-cache:/root/.cache/huggingface
|
|
environment:
|
|
- WHISPER__MODEL=Systran/faster-whisper-small
|
|
- WHISPER__DEVICE=cpu
|
|
|
|
volumes:
|
|
hf_cache:
|
|
whisper-cache:
|