Configure tdarr
This commit is contained in:
parent
ea38aafdc6
commit
7011fa7a6e
|
@ -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";
|
||||||
|
|
|
@ -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";
|
||||||
|
|
Loading…
Reference in New Issue