Files
whisper/compose.yml
Kappeh b42c19b2e7
All checks were successful
Deploy / Deploy (push) Successful in 16s
Enable docker image update notifications
2026-02-20 20:29:32 +00:00

32 lines
601 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
labels:
diun.enable: "true"
diun.watch_repo: "true"
diun.include_tags: "latest"
volumes:
data:
networks:
whisper_network:
driver: bridge