add radarr

This commit is contained in:
sadan 2025-03-10 00:47:50 -04:00
parent 2f2b116890
commit de910497fa
No known key found for this signature in database
3 changed files with 46 additions and 0 deletions

View file

@ -0,0 +1,12 @@
{ ... }:
{
home = {
file = {
sonarr_compose = {
source = ./docker-compose.yml;
target = "./src/radarr/docker-compose.yml";
};
};
};
}

View file

@ -0,0 +1,14 @@
services:
radarr:
image: lscr.io/linuxserver/radarr:latest
container_name: radarr
environment:
- PUID=107
- PGID=1002
- TZ=America/New_York
volumes:
- /storage/radarrConf:/config
- /storage/movies:/storage/movies
- /storage/downloads:/storage/downloads
ports:
- 7878:7878

View file

@ -0,0 +1,20 @@
{ ... }:
{
services = {
nginx = {
virtualHosts = {
"radarr.sadan.zip" = {
forceSSL = true;
useACMEHost = "sadan.zip";
locations = {
"/" = {
proxyPass = "http://localhost:9696";
};
};
};
};
};
};
}