Configure tdarr

This commit is contained in:
Nathan McCarty 2023-04-11 22:32:35 -04:00
parent ea38aafdc6
commit 7011fa7a6e
No known key found for this signature in database
2 changed files with 24 additions and 0 deletions

View File

@ -133,6 +133,20 @@
"/mnt/scratch/sabnzbd/download:/incomplete-downloads" "/mnt/scratch/sabnzbd/download:/incomplete-downloads"
]; ];
}; };
# Configure tdarr - automatic transcoding and homogenization
"tdarr" = {
image = "ghcr.io/haveagitgat/tdarr";
environment = {
"PUID" = "1000";
"PGID" = "1000";
"TZ" = "America/New_York";
"internalNode" = "true";
"inContainer" = "true";
};
ports = [ "8265:8265" "8266:8266" "8267:8267" ];
volumes = [ "/var/lib/tdarr:/app/configs" "/mnt/plex:/media" ];
extraOptions = [ "--device=/dev/dri:/dev/dri" ];
};
# Configure sonarr - TV # Configure sonarr - TV
"sonarr" = { "sonarr" = {
image = "lscr.io/linuxserver/sonarr:latest"; image = "lscr.io/linuxserver/sonarr:latest";

View File

@ -209,6 +209,16 @@
''; '';
}; };
}; };
"tdarr.mccarty.io" = {
forceSSL = true;
useACMEHost = "mccarty.io";
locations."/" = {
proxyPass = "http://100.121.150.78:8265";
extraConfig = ''
allow all;
'';
};
};
"calibre.mccarty.io" = { "calibre.mccarty.io" = {
forceSSL = true; forceSSL = true;
useACMEHost = "mccarty.io"; useACMEHost = "mccarty.io";