Renamed all references from openedai-speech to uncloseai-speech across the entire codebase, including: - Project name in README and documentation - Docker image names in compose files - Makefile deployment paths and container names - Configuration examples in vars.sh.example This establishes our raccoon mission fork as UncloseAI Speech, a unified TTS system supporting multiple engines (Piper, XTTS, etc.) with OpenAI API compatibility. 🦝 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
27 lines
No EOL
542 B
YAML
27 lines
No EOL
542 B
YAML
services:
|
|
server:
|
|
build:
|
|
dockerfile: Dockerfile
|
|
args:
|
|
- USE_ROCM=1
|
|
image: ghcr.io/matatonic/uncloseai-speech-rocm
|
|
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 |