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