Fix whisper auto bug

This commit is contained in:
2025-09-07 13:45:00 +02:00
parent efe166a4ff
commit 420442506a
2 changed files with 12 additions and 3 deletions

View File

@@ -21,6 +21,11 @@ services:
restart: unless-stopped
extra_hosts:
- host.docker.internal:host-gateway
healthcheck:
test: ["CMD-SHELL", "curl -fsS http://127.0.0.1:8080/health || exit 1"]
interval: 30s
timeout: 5s
retries: 3
podx-worker:
build: ./app
@@ -43,6 +48,8 @@ services:
- ${MODELS_HOST_DIR:-./models}:/root/.cache/huggingface
depends_on: [meili, redis]
restart: unless-stopped
healthcheck:
test: ["CMD-SHELL", "exit 0"]
extra_hosts:
- host.docker.internal:host-gateway
@@ -100,4 +107,6 @@ services:
- ${LIBRARY_HOST_DIR:-./library}:/library
- ${TRANSCRIPTS_HOST_DIR:-./transcripts}:/transcripts
depends_on: [redis]
healthcheck:
test: ["CMD-SHELL", "exit 0"]
restart: unless-stopped