This commit is contained in:
Kar
2025-06-05 14:31:34 +05:30
commit 9989eeb879
16 changed files with 1015 additions and 0 deletions

16
docker-compose.yml Normal file
View File

@@ -0,0 +1,16 @@
services:
stt-app:
build: .
ports:
- "3000:3000"
volumes:
- ./public:/app/public
- ./vosk-model:/app/vosk-model:ro
environment:
- NODE_ENV=development
restart: unless-stopped
healthcheck:
test: ["CMD", "wget", "--no-verbose", "--tries=1", "--spider", "http://localhost:3000"]
interval: 30s
timeout: 10s
retries: 3