This commit is contained in:
Alireza
2025-07-31 17:35:08 +03:30
commit 640363fef2
27 changed files with 4201 additions and 0 deletions

11
docker-compose.yml Normal file
View File

@@ -0,0 +1,11 @@
version: '3.8'
services:
vosk:
build: ./vosk_service
container_name: vosk-api
ports:
- "5000:5000"
# Uncomment the next lines if you want to mount the model from the host instead of copying into the image
# volumes:
# - ./vosk_service/model:/app/model
restart: unless-stopped