1

Services/Prowlarr: Init at v2.1.5

This commit is contained in:
2025-11-15 02:29:57 +01:00
parent 2c9f10dad5
commit a6c24c1f81
2 changed files with 47 additions and 0 deletions

View File

@ -35,6 +35,7 @@
../services/nginx-proxy-manager.nix
../services/paperless.nix
../services/portainer-agent.nix
../services/prowlarr.nix
../services/radarr.nix
../services/sabnzbd-movies.nix
../services/sabnzbd-shows.nix

View File

@ -0,0 +1,46 @@
{
config,
lib,
pkgs,
...
}: let
prowlarrVersion = "2.1.5";
in {
virtualisation.oci-containers.containers = {
prowlarr = {
image = "linuxserver/prowlarr:${prowlarrVersion}";
autoStart = true;
login = {
# Uses DockerHub by default
# registry = "";
# DockerHub Credentials
username = "christoph.urlacher@protonmail.com";
passwordFile = "${config.sops.secrets.docker-password.path}";
};
dependsOn = [];
ports = [
# "9696:9696"
];
volumes = [
"prowlarr_config:/config"
];
environment = {
PUID = "1000";
PGID = "1000";
TZ = "Europe/Berlin";
};
extraOptions = [
# "--privileged"
# "--device=nvidia.com/gpu=all"
"--net=behind-nginx"
];
};
};
}