added bazarr

This commit is contained in:
Richie Cahill 2024-07-04 20:26:41 -04:00
parent 68da465b55
commit b6b7a0283e
2 changed files with 16 additions and 0 deletions

View File

@ -19,6 +19,7 @@
"autopull",
"azuretools",
"BANN",
"bazarr",
"binhex",
"bitwarden",
"blueman",

View File

@ -56,6 +56,21 @@ in
environmentFiles = [ config.sops.secrets."docker/qbit_vpn".path ];
autoStart = true;
};
bazarr = {
image = "ghcr.io/linuxserver/bazarr:latest";
ports = [ "6767:6767" ];
environment = {
PUID = "600";
PGID = "100";
TZ = "America/New_York";
};
volumes = [
"${vars.media_docker_configs}/bazarr:/config"
"${vars.storage_plex}/movies:/movies"
"${vars.storage_plex}/tv:/tv"
];
autoStart = true;
};
prowlarr = {
image = "ghcr.io/linuxserver/prowlarr:latest";
ports = [ "9696:9696" ];