uncloseai-speech/docker-compose.rocm.yml
Russell Ballestrini 058ad5840b Fix docker-compose image references to use local builds
Replace upstream ghcr.io/matatonic image references with local image names.
This was missed in the naming standardization commit 7559e56.

- docker-compose.yml: uncloseai-speech:local
- docker-compose.min.yml: uncloseai-speech-min:local
- docker-compose.rocm.yml: uncloseai-speech-rocm:local
2025-12-13 10:53:36 -05:00

27 lines
No EOL
530 B
YAML

services:
server:
build:
dockerfile: Dockerfile
args:
- USE_ROCM=1
image: uncloseai-speech-rocm:local
env_file: speech.env
ports:
- "8000:8000"
volumes:
- ./voices:/app/voices
- ./config:/app/config
# To install as a service
restart: unless-stopped
# For AMD GPU (ROCm) Support
cap_add:
- SYS_PTRACE
devices:
- /dev/kfd
- /dev/dri
security_opt:
- seccomp=unconfined
group_add:
- video
- audio
ipc: host