Files
rocm-chatterbox-whisper/docker-compose.yml
scott dc7a3cf769
Some checks failed
Build ROCm Image / build (push) Failing after 7m25s
Upgrade to ROCm 7.2 and PyTorch 2.11.0
- Update torch/torchaudio to 2.11.0 with ROCm 7.2 wheel index
- Drop torchvision (unused for TTS) and pytorch_triton_rocm (bundled in 2.11)
- Update HSA_OVERRIDE_GFX_VERSION docs; RX 7000+ natively supported in ROCm 7.2

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-04-05 11:06:39 -04:00

37 lines
998 B
YAML

services:
chatterbox-whisper:
image: git.sdgarren.com/scott/rocm-chatterbox-whisper:latest
build:
context: .
dockerfile: Dockerfile.rocm
restart: unless-stopped
ports:
- "${WYOMING_PORT:-10200}:10200"
devices:
- /dev/kfd
- /dev/dri
group_add:
- video
- render
ipc: host
shm_size: 8g
security_opt:
- seccomp=unconfined
volumes:
- ./config.yaml:/app/config.yaml
- ./voices:/app/voices
- ./reference_audio:/app/reference_audio
- hf_cache:/app/hf_cache
environment:
- HF_HUB_ENABLE_HF_TRANSFER=1
# HSA_OVERRIDE_GFX_VERSION is only needed for GPUs not natively supported
# by the installed ROCm version. ROCm 7.2 supports RX 7000 series and newer
# natively. Older cards may still need an override:
# 10.3.0 = RX 5000/6000 series
# 9.0.6 = Vega
# - HSA_OVERRIDE_GFX_VERSION=10.3.0
# - HF_TOKEN=your_token_here
volumes:
hf_cache: