This commit is contained in:
soraefir
2026-05-20 19:04:51 +02:00
parent deea98b2de
commit 46fae29477

View File

@@ -9,7 +9,7 @@ let
contents = with pkgs; [ cacert openssl ]; contents = with pkgs; [ cacert openssl ];
config = { config = {
Cmd = [ "${appPkg}/${binaryPath}" "-nobrowser" "-data=/config" ]; Cmd = [ "${appPkg}/${binaryPath}" "-nobrowser" "-data=/config" ];
Env = [ "DOTNET_SYSTEM_GLOBALIZATION_INVARIANT=1" "HOME=/tmp" ]; Env = [ "DOTNET_SYSTEM_GLOBALIZATION_INVARIANT=0" "HOME=/tmp" ];
}; };
}; };
@@ -48,11 +48,11 @@ in
port = 8989; port = 8989;
secret = name; secret = name;
extraEnv = { extraEnv = {
"PROWLARR__APP__INSTANCENAME" = "Prowlarr"; PROWLARR__APP__INSTANCENAME = "Prowlarr";
"PROWLARR__AUTH__METHOD" = "External"; PROWLARR__AUTH__METHOD = "External";
"PROWLARR__SERVER__PORT" = "8989"; PROWLARR__SERVER__PORT = "8989";
"PROWLARR__SERVER__URLBASE" = "/prowlarr"; PROWLARR__SERVER__URLBASE = "/prowlarr";
"PROWLARR__LOG__ANALYTICSENABLED" = "False"; PROWLARR__LOG__ANALYTICSENABLED = "False";
}; };
extraOptions = [ extraOptions = [
"--user=0:0" "--user=0:0"
@@ -70,11 +70,11 @@ in
port = 8989; port = 8989;
secret = name; secret = name;
extraEnv = { extraEnv = {
"RADARR__APP__INSTANCENAME" = "Radarr"; RADARR__APP__INSTANCENAME = "Radarr";
"RADARR__AUTH__METHOD" = "External"; RADARR__AUTH__METHOD = "External";
"RADARR__SERVER__PORT" = "8989"; RADARR__SERVER__PORT = "8989";
"RADARR__SERVER__URLBASE" = "/radarr"; RADARR__SERVER__URLBASE = "/radarr";
"RADARR__LOG__ANALYTICSENABLED" = "False"; RADARR__LOG__ANALYTICSENABLED = "False";
}; };
extraOptions = [ extraOptions = [
"--user=0:0" "--user=0:0"
@@ -92,11 +92,11 @@ in
port = 8989; port = 8989;
secret = name; secret = name;
extraEnv = { extraEnv = {
"SONARR__APP__INSTANCENAME" = "Sonarr"; SONARR__APP__INSTANCENAME = "Sonarr";
"SONARR__AUTH__METHOD" = "External"; SONARR__AUTH__METHOD = "External";
"SONARR__SERVER__PORT" = "8989"; SONARR__SERVER__PORT = "8989";
"SONARR__SERVER__URLBASE" = "/sonarr"; SONARR__SERVER__URLBASE = "/sonarr";
"SONARR__LOG__ANALYTICSENABLED" = "False"; SONARR__LOG__ANALYTICSENABLED = "False";
}; };
extraOptions = [ extraOptions = [
"--user=0:0" "--user=0:0"
@@ -119,7 +119,7 @@ in
image = "ghcr.io/flaresolverr/flaresolverr:latest"; image = "ghcr.io/flaresolverr/flaresolverr:latest";
port = 8191; port = 8191;
extraEnv = { extraEnv = {
"CAPTCHA_SOLVER" = "none"; CAPTCHA_SOLVER = "none";
}; };
}; };
}; };