added whisper

This commit is contained in:
Richie Cahill 2024-07-05 10:24:22 -04:00
parent b6b7a0283e
commit 3722e4602b

View File

@ -112,6 +112,20 @@ in
]; ];
autoStart = true; autoStart = true;
}; };
whisper = {
image = "ghcr.io/linuxserver/faster-whisper:latest";
ports = [ "10300:10300" ];
environment = {
PUID = "600";
PGID = "100";
TZ = "America/New_York";
WHISPER_MODEL = "tiny-int8";
WHISPER_LANG = "en";
WHISPER_BEAM = "1";
};
volumes = [ "${vars.media_docker_configs}/whisper:/config" ];
autoStart = true;
};
}; };
sops = { sops = {
defaultSopsFile = ../secrets.yaml; defaultSopsFile = ../secrets.yaml;