4 Commits

Author SHA1 Message Date
cjones d370ed7106 Initial commit of whisper compose.yaml 2026-05-30 13:02:47 -04:00
cjones 42d9e628b7 reset GCM token 2026-04-17 12:38:36 -04:00
cjones 9cf54273e5 testing git credential configuration 2026-04-16 23:05:50 -04:00
cjones c5df925cb5 added a dot to test GCM 2026-04-16 22:05:46 -04:00
2 changed files with 19 additions and 1 deletions
+1 -1
View File
@@ -1,3 +1,3 @@
# containers
compose.yaml and other configuration data for Docker containers
compose.yaml and other configuration data for Docker containers.
+18
View File
@@ -0,0 +1,18 @@
services:
whisper-streaming:
image: ghcr.io/ufal/whisper_streaming:latest
container_name: whisper-live-stream
restart: unless-stopped
ports:
- "8071:8000" # WebSocket port for the streaming client
environment:
- MODEL=base # Options: tiny, base, small, medium (base is best balance for 13700K)
- LANGUAGE=en # Hardcoding to English reduces processing lag
- COMPUTE_TYPE=int8 # Optimizes the model for rapid CPU integer math
- THREADS=4 # Restricts execution to 4 performance cores to protect host OS
logging:
driver: "json-file"
options:
max-size: "10m"
max-file: "3"