Revert "Fix whisper compose healthcheck"

This reverts commit 93991dd685.
This commit is contained in:
William Valentin
2026-02-13 23:28:46 -08:00
parent 93991dd685
commit 8fa2a6de9d
3 changed files with 4 additions and 3 deletions
-1
View File
@@ -5,4 +5,3 @@ dist/
.env.*
!.env.example
.worktrees/
whisper-models/
+1 -1
View File
@@ -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"
+3 -1
View File
@@ -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