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: