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>
21 lines
506 B
YAML
21 lines
506 B
YAML
services:
|
|
server:
|
|
build:
|
|
dockerfile: Dockerfile
|
|
image: ghcr.io/matatonic/uncloseai-speech
|
|
env_file: speech.env
|
|
ports:
|
|
- "8000:8000"
|
|
volumes:
|
|
- ./voices:/app/voices
|
|
- ./config:/app/config
|
|
# To install as a service
|
|
restart: unless-stopped
|
|
deploy:
|
|
resources:
|
|
reservations:
|
|
devices:
|
|
- driver: nvidia
|
|
#device_ids: ['0', '1'] # Select a gpu, or
|
|
count: all
|
|
capabilities: [gpu]
|