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>
13 lines
352 B
YAML
13 lines
352 B
YAML
services:
|
|
server:
|
|
build:
|
|
dockerfile: Dockerfile.min # piper for all models, no gpu/nvidia required, ~1GB
|
|
image: ghcr.io/matatonic/uncloseai-speech-min
|
|
env_file: speech.env
|
|
ports:
|
|
- "8000:8000"
|
|
volumes:
|
|
- ./voices:/app/voices
|
|
- ./config:/app/config
|
|
# To install as a service
|
|
restart: unless-stopped
|