This commit is contained in:
soraefir
2026-05-19 23:56:45 +02:00
parent 20103fe83c
commit 58825913e0

View File

@@ -44,13 +44,14 @@ in {
extraEnv = {
"PROWLARR__APP__INSTANCENAME" = "Prowlarr";
# "PROWLARR__AUTH__ENABLED" = "false";
"PROWLARR__AUTH__METHOD" = "external";
"PROWLARR__AUTH__METHOD" = "External";
"PROWLARR__SERVER__PORT" = "8989";
"PROWLARR__SERVER__URLBASE" = "prowlarr";
"PROWLARR__SERVER__ENABLESSL" = "false";
};
extraOptions = [
"--tmpfs=/tmp:rw,noexec,nosuid,size=512m"
"--user=1000:1000"
];
overrides.volumes = sharedVolumes ++ [ "${serverCfg.configPath}/servarr/prowlarr:/config" ];
};
@@ -64,13 +65,14 @@ in {
extraEnv = {
"RADARR__APP__INSTANCENAME" = "Radarr";
# "RADARR__AUTH__ENABLED" = "false";
"RADARR__AUTH__METHOD" = "external";
"RADARR__AUTH__METHOD" = "External";
"RADARR__SERVER__PORT" = "8989";
"RADARR__SERVER__URLBASE" = "radarr";
"RADARR__SERVER__ENABLESSL" = "false";
};
extraOptions = [
"--tmpfs=/tmp:rw,noexec,nosuid,size=512m"
"--user=1000:1000"
];
overrides.volumes = sharedVolumes ++ [ "${serverCfg.configPath}/servarr/radarr:/config" ];
};
@@ -84,13 +86,14 @@ in {
extraEnv = {
"SONARR__APP__INSTANCENAME" = "Sonarr";
# "SONARR__AUTH__ENABLED" = "false";
"SONARR__AUTH__METHOD" = "external";
"SONARR__AUTH__METHOD" = "External";
"SONARR__SERVER__PORT" = "8989";
"SONARR__SERVER__URLBASE" = "sonarr";
"SONARR__SERVER__ENABLESSL" = "false";
};
extraOptions = [
"--tmpfs=/tmp:rw,noexec,nosuid,size=512m"
"--user=1000:1000"
];
overrides.volumes = sharedVolumes ++ [ "${serverCfg.configPath}/servarr/sonarr:/config" ];
};