diff --git a/xtts/docker-compose.yml b/xtts/docker-compose.yml index 0e25fd9..fbb4418 100644 --- a/xtts/docker-compose.yml +++ b/xtts/docker-compose.yml @@ -36,12 +36,24 @@ services: # Local-Modus: Modell bleibt dauerhaft im GPU-VRAM (~2GB). Vorteile: # - Render startet sofort (kein reload pro Request) # - /tts_stream funktioniert → echtes Streaming mit ~500ms time-to-first-audio - # Ohne diesen command: apiManual-Modus, jede Anfrage lädt Modell neu, kein Streaming. - command: ["--listen", "-p", "8020", "-t", "http://0.0.0.0:8020", - "-ms", "local", - "-o", "/app/output", - "-mf", "/app/xtts_models", - "-sf", "/voices"] + # Ohne diesen command: apiManual-Modus, jede Anfrage laedt Modell neu, kein Streaming. + # Der NVIDIA-Entrypoint erwartet Python als ausfuehrbares Command, nicht nur Flags. + command: + - python + - -m + - xtts_api_server + - -hs + - "0.0.0.0" + - -p + - "8020" + - -ms + - local + - -o + - /app/output + - -mf + - /app/xtts_models + - -sf + - /voices restart: unless-stopped # ─── XTTS Bridge (verbindet zu RVS) ───────────