Compare commits
6 Commits
39c9221d00
...
addwhisper
| Author | SHA1 | Date | |
|---|---|---|---|
| d370ed7106 | |||
| 42d9e628b7 | |||
| 9cf54273e5 | |||
| c5df925cb5 | |||
| e0d80dba34 | |||
| 5390ef62e9 |
@@ -1,3 +1,3 @@
|
||||
# containers
|
||||
|
||||
compose.yaml and other configuration data for Docker containers
|
||||
compose.yaml and other configuration data for Docker containers.
|
||||
|
||||
@@ -4,7 +4,7 @@ services:
|
||||
restart: always
|
||||
command: --transaction-isolation=READ-COMMITTED --log-bin=binlog --binlog-format=ROW
|
||||
volumes:
|
||||
- /mnt/storage/appdata/nextcloud/mysql:/var/lib/mysql
|
||||
- /var/lib/nextcloud/db:/var/lib/mysql
|
||||
networks:
|
||||
- default
|
||||
environment:
|
||||
@@ -21,7 +21,7 @@ services:
|
||||
ports:
|
||||
- 8080:80
|
||||
volumes:
|
||||
- /mnt/storage/appdata/nextcloud/www/html:/var/www/html
|
||||
- /var/lib/nextcloud/data/www/html:/var/www/html
|
||||
networks:
|
||||
- default
|
||||
environment:
|
||||
|
||||
@@ -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"
|
||||
|
||||
Reference in New Issue
Block a user