Files
whisper/compose.yml
Kappeh 0c49662dcf
All checks were successful
Deploy / Deploy (push) Successful in 37s
Add whisper container
2026-02-15 23:31:03 +00:00

28 lines
499 B
YAML

services:
whisper:
image: lscr.io/linuxserver/faster-whisper:3.1.0
restart: unless-stopped
networks:
- whisper_network
ports:
- 10300:10300
environment:
PUID: "2022" # whisper
PGID: "2022" # whisper
TZ: "Etc/UTC"
# DEBUG: "true"
# LOCAL_ONLY: "true"
WHISPER_BEAM: "1"
WHISPER_LANG: "en"
WHISPER_MODEL: "base.en"
volumes:
- data:/config:rw
volumes:
data:
networks:
whisper_network:
driver: bridge