Setup sabnzbd

This commit is contained in:
Nathan McCarty 2023-04-09 18:39:48 -04:00
parent 0467310614
commit 5a81e4458d
Signed by: thatonelutenist
GPG Key ID: D70DA3DD4D1E9F96
1 changed files with 14 additions and 0 deletions

View File

@ -101,6 +101,20 @@
volumes = [ "/var/lib/tautulli:/config" ]; volumes = [ "/var/lib/tautulli:/config" ];
}; };
# Configure sabnzbd # Configure sabnzbd
"sabnzbd" = {
image = "lscr.io/linuxserver/sabnzbd:latest";
environment = {
"PUID" = "1000";
"PGID" = "1000";
"TZ" = "America/New_York";
};
ports = [ "8080:8080" ];
volumes = [
"/var/lib/sabnzbd:/config"
"/mnt/scratch/sabnzbd/download-complete:/downloads"
"/mnt/scratch/sabnzbd/download:/incomplete-downloads"
];
};
# Configure sonarr # Configure sonarr
# Configure radarr # Configure radarr
}; };