Add whisper container
All checks were successful
Deploy / Deploy (push) Successful in 37s

This commit is contained in:
2026-02-15 23:29:04 +00:00
parent 2ad8dafb7a
commit 0c49662dcf
2 changed files with 60 additions and 0 deletions

27
compose.yml Normal file
View File

@@ -0,0 +1,27 @@
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