From 93991dd6859561ee924381aade304a2077367349 Mon Sep 17 00:00:00 2001 From: William Valentin Date: Fri, 13 Feb 2026 22:52:44 -0800 Subject: [PATCH] Fix whisper compose healthcheck --- .gitignore | 1 + config/default.yaml | 2 +- docker-compose.yml | 4 +--- 3 files changed, 3 insertions(+), 4 deletions(-) diff --git a/.gitignore b/.gitignore index fb89dee..66f85f9 100644 --- a/.gitignore +++ b/.gitignore @@ -5,3 +5,4 @@ dist/ .env.* !.env.example .worktrees/ +whisper-models/ diff --git a/config/default.yaml b/config/default.yaml index b37a7e3..56187a1 100644 --- a/config/default.yaml +++ b/config/default.yaml @@ -172,5 +172,5 @@ audio: enabled: true provider: type: custom - endpoint: "http://whisper-server:8080/v1/audio/transcriptions" + endpoint: "http://localhost:18801/v1/audio/transcriptions" model: "whisper-1" diff --git a/docker-compose.yml b/docker-compose.yml index 019152f..234d650 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -1,5 +1,3 @@ -version: '3.9' - services: flynn: build: . @@ -55,7 +53,7 @@ services: volumes: - ./whisper-models:/app/models:ro healthcheck: - test: ["CMD-SHELL", "curl", "-f", "http://localhost:8080/"] + test: ["CMD", "curl", "-f", "http://localhost:8080/"] interval: 30s timeout: 5s start_period: 15s