Add Docker deployment support

This commit is contained in:
Dymas
2026-06-06 11:44:30 +02:00
parent 0af80fde24
commit d8b92d5025
5 changed files with 134 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
services:
whisper-api:
build:
context: .
dockerfile: Dockerfile
container_name: whisper-api-server
ports:
- "5042:5042"
volumes:
- ./config.docker.json:/app/config.docker.json:ro
- ./logs:/app/logs
- ./history:/app/history
- ./models:/models
restart: unless-stopped