From 58c4a4ad8cf199c4f59a225d96fafd8da49a12ed Mon Sep 17 00:00:00 2001 From: Grail Finder Date: Sat, 6 Dec 2025 16:16:03 +0300 Subject: Chore: move docker/tts/stt inside of batteries dir --- docker-compose.yml | 42 ------------------------------------------ 1 file changed, 42 deletions(-) delete mode 100644 docker-compose.yml (limited to 'docker-compose.yml') diff --git a/docker-compose.yml b/docker-compose.yml deleted file mode 100644 index c014814..0000000 --- a/docker-compose.yml +++ /dev/null @@ -1,42 +0,0 @@ -services: - # Whisper.cpp STT service - whisper: - image: ghcr.io/ggml-org/whisper.cpp:main - container_name: whisper-stt - ports: - - "8081:8081" - volumes: - - ./models:/app/models - - ./audio:/app/audio - working_dir: /app - entrypoint: "" - command: ["./build/bin/whisper-server", "-m", "/app/models/ggml-tiny.en.bin", "-t", "4", "-p", "1", "--port", "8081", "--host", "0.0.0.0"] - environment: - - WHISPER_LOG_LEVEL=3 - # Restart policy in case the service fails - restart: unless-stopped - - # Kokoro-FastAPI TTS service - kokoro-tts: - # image: ghcr.io/remsky/kokoro-fastapi-cpu:latest - image: ghcr.io/remsky/kokoro-fastapi-gpu:latest - container_name: kokoro-tts - ports: - - "8880:8880" - environment: - - API_LOG_LEVEL=INFO - # For GPU support, uncomment the following lines: - deploy: - resources: - reservations: - devices: - - driver: nvidia - count: 1 - capabilities: [gpu] - restart: unless-stopped - -volumes: - models: - driver: local - audio: - driver: local -- cgit v1.2.3