Update .gitignore to include .flac files, remove docker-compose.yml, modify batch_confirm_hf.py for improved error handling and dataset upload logic, and adjust Dockerfile paths for service code and model directory.

This commit is contained in:
Alireza
2025-08-02 12:21:28 +03:30
parent 640363fef2
commit d16f4a84bb
4 changed files with 47 additions and 49 deletions

12
vosk/docker-compose.yml Normal file
View File

@@ -0,0 +1,12 @@
services:
vosk:
build:
context: .
dockerfile: vosk_service/Dockerfile
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