Files
Qwen3-tts/scripts/stop_tts.sh

9 lines
195 B
Bash
Raw Permalink Normal View History

2026-06-18 17:27:42 +02:00
#!/bin/bash
set -euo pipefail
2026-06-19 17:22:28 +02:00
cd "$(dirname "$0")/.."
2026-06-18 17:27:42 +02:00
docker compose stop qwen3-tts >/dev/null 2>&1 || true
docker compose rm -f qwen3-tts >/dev/null 2>&1 || true
printf "✓ TTS/UI gestoppt
"