This commit is contained in:
soraefir
2026-05-19 23:46:10 +02:00
parent 33da5d9f1b
commit 271502f1c9
2 changed files with 29 additions and 2 deletions

View File

@@ -39,8 +39,16 @@ in {
subdomain = containerCfg.subdomain; subdomain = containerCfg.subdomain;
subpath = "prowlarr"; subpath = "prowlarr";
imageStream = images.prowlarr; imageStream = images.prowlarr;
port = 9696; port = 8989;
secret = name; secret = name;
extraEnv = {
"PROWLARR__APP__INSTANCENAME" = "Prowlarr";
# "PROWLARR__AUTH__ENABLED" = "false";
"PROWLARR__AUTH__METHOD" = "external";
"PROWLARR__SERVER__PORT" = "8989";
"PROWLARR__SERVER__URLBASE" = "prowlarr";
"PROWLARR__SERVER__ENABLESSL" = "false";
};
extraOptions = [ extraOptions = [
"--tmpfs=/tmp:rw,noexec,nosuid,size=512m" "--tmpfs=/tmp:rw,noexec,nosuid,size=512m"
]; ];
@@ -51,8 +59,16 @@ in {
subdomain = containerCfg.subdomain; subdomain = containerCfg.subdomain;
subpath = "radarr"; subpath = "radarr";
imageStream = images.radarr; imageStream = images.radarr;
port = 7878; port = 8989;
secret = name; secret = name;
extraEnv = {
"RADARR__APP__INSTANCENAME" = "Radarr";
# "RADARR__AUTH__ENABLED" = "false";
"RADARR__AUTH__METHOD" = "external";
"RADARR__SERVER__PORT" = "8989";
"RADARR__SERVER__URLBASE" = "radarr";
"RADARR__SERVER__ENABLESSL" = "false";
};
extraOptions = [ extraOptions = [
"--tmpfs=/tmp:rw,noexec,nosuid,size=512m" "--tmpfs=/tmp:rw,noexec,nosuid,size=512m"
]; ];
@@ -65,6 +81,14 @@ in {
imageStream = images.sonarr; imageStream = images.sonarr;
port = 8989; port = 8989;
secret = name; secret = name;
extraEnv = {
"SONARR__APP__INSTANCENAME" = "Sonarr";
# "SONARR__AUTH__ENABLED" = "false";
"SONARR__AUTH__METHOD" = "external";
"SONARR__SERVER__PORT" = "8989";
"SONARR__SERVER__URLBASE" = "sonarr";
"SONARR__SERVER__ENABLESSL" = "false";
};
extraOptions = [ extraOptions = [
"--tmpfs=/tmp:rw,noexec,nosuid,size=512m" "--tmpfs=/tmp:rw,noexec,nosuid,size=512m"
]; ];

View File

@@ -36,3 +36,6 @@ UMAMI: |
APP_SECRET=... APP_SECRET=...
IMMICH: | IMMICH: |
DB_URL = "postgresql://immich_user:...@localhost:5432/immich_db"; DB_URL = "postgresql://immich_user:...@localhost:5432/immich_db";
SERVARR: |
SONARR__AUTH__APIKEY=...
RADARR__AUTH__APIKEY=...