Files
rocm-chatterbox-whisper/docker-compose.yml
scott d517f730c2
All checks were successful
Build ROCm Image / build (push) Successful in 3m27s
Merge main into dev and suppress MIOpen workspace warnings
- Merge: voice conditionals cache and warmup pre-computation from main
- Add MIOPEN_LOG_LEVEL=2 to suppress GemmFwdRest workspace=0 warnings

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-04-06 17:41:54 -04:00

40 lines
1.0 KiB
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
ulimits:
nofile:
soft: 65536
hard: 65536
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
# Required for RX 6700 XT (gfx1031) - not natively supported in ROCm.
- HSA_OVERRIDE_GFX_VERSION=10.3.0
# Disable MIOpen's SQLite cache — avoids crashes writing benchmark results.
- MIOPEN_DISABLE_CACHE=1
# Suppress MIOpen workspace=0 solver warnings (expected with ROCm/PyTorch, not actionable).
- MIOPEN_LOG_LEVEL=2
volumes:
hf_cache: