24 lines
723 B
YAML
24 lines
723 B
YAML
services:
|
|
whisper-live:
|
|
image: ghcr.io/collabora/whisperlive-openvino:latest
|
|
container_name: whisper-live
|
|
restart: unless-stopped
|
|
ports:
|
|
- "9097:9090" # Maps your existing client port 9097 to the official 9090 port
|
|
volumes:
|
|
- whisper-live-data:/var/lib/whisper-live
|
|
|
|
# Tells WhisperLive to use the OpenVINO hardware engine
|
|
command: ["python3", "run_server.py", "--port", "9090", "--backend", "openvino"]
|
|
|
|
devices:
|
|
- /dev/dri/renderD128:/dev/dri/renderD128
|
|
- /dev/dri/card1:/dev/dri/card1 # Change to card0 if your 13700K is the only GPU
|
|
|
|
cpuset: "0-15" # Giving it all 16 P-core logical threads
|
|
mem_limit: 6g
|
|
|
|
volumes:
|
|
whisper-live-data:
|
|
|