Lauffähige Cloning Version

This commit is contained in:
2026-06-19 15:52:58 +02:00
parent 569970e339
commit a5230964cb
5 changed files with 266 additions and 8 deletions

View File

@@ -52,17 +52,18 @@ services:
- HF_HUB_OFFLINE=1
- TRANSFORMERS_OFFLINE=1
- QWEN3_TTS_CLONE_MODEL=${QWEN3_TTS_CLONE_MODEL:-}
- QWEN3_TTS_CLONE_PORT=8093
- QWEN3_TTS_CLONE_PORT=8091
ports:
- "8093:8093"
- "8091:8091"
volumes:
- /home/guru/vllm/data/root:/root
- ./deploy/qwen3_tts.yaml:/deploy/qwen3_tts.yaml:ro
- ./entrypoint_clone.sh:/entrypoint_clone.sh:ro
- ./patch_qwen3_tts_runtime.py:/patch_qwen3_tts_runtime.py:ro
command: ["/bin/bash", "/entrypoint_clone.sh"]
restart: "no"
healthcheck:
test: ["CMD", "curl", "-sf", "http://localhost:8093/health"]
test: ["CMD", "curl", "-sf", "http://localhost:8091/health"]
interval: 30s
timeout: 10s
retries: 5