Lucy bind paths + LAN host pins replaced with env defaults. Repository URLs → git.sulkta.com. Audit-changelog scaffolding stripped from inline comments (technical reasoning preserved). README sheds marketing scaffolding. AI-speak in load-bearing prompts/SOULs left alone — that IS the product.
32 lines
868 B
YAML
32 lines
868 B
YAML
# Kokoro-82M TTS sidecar.
|
|
#
|
|
# Apache 2.0 code AND model weights — clean stack for share/publish.
|
|
# Audiobook-quality narrator; F5-TTS stays around for voice-cloning.
|
|
#
|
|
# Set in .env (or override):
|
|
# KOKORO_HOST_PORT=7794
|
|
# KOKORO_DATA=./data # ${KOKORO_DATA}/hf-cache
|
|
# AUDIO_DIR=../f5-tts/data/audio # shared output dir across engines
|
|
name: kokoro
|
|
|
|
services:
|
|
kokoro:
|
|
build: .
|
|
image: kokoro:0.5
|
|
container_name: kokoro
|
|
restart: unless-stopped
|
|
deploy:
|
|
resources:
|
|
reservations:
|
|
devices:
|
|
- driver: nvidia
|
|
count: all
|
|
capabilities: [gpu]
|
|
ports:
|
|
- "${KOKORO_HOST_PORT:-7794}:7860"
|
|
volumes:
|
|
- ${KOKORO_DATA:-./data}/hf-cache:/cache/hf
|
|
- ${AUDIO_DIR:-./data/audio}:/audio
|
|
environment:
|
|
HF_HOME: /cache/hf
|
|
HF_HUB_DISABLE_TELEMETRY: "1"
|