feat(arion): add hosts for media containers and add rss-bridge on homepage
All checks were successful
Discord / discord commits (push) Has been skipped
All checks were successful
Discord / discord commits (push) Has been skipped
This commit is contained in:
parent
8b49926435
commit
dd18307e25
9 changed files with 18 additions and 0 deletions
|
@ -207,6 +207,13 @@
|
|||
description = "dockerhub feed maker";
|
||||
};
|
||||
}
|
||||
{
|
||||
rss-bridge = {
|
||||
href = "https://bridge.nelim.org";
|
||||
icon = "rss-bridge.png";
|
||||
description = "make rss feeds from anything";
|
||||
};
|
||||
}
|
||||
{
|
||||
calibre = {
|
||||
href = "https://lan.nelim.org/calibre";
|
||||
|
|
|
@ -14,6 +14,7 @@ in {
|
|||
TZ = "America/New_York";
|
||||
};
|
||||
|
||||
extra_hosts = ["lan.nelim.org=10.0.0.130"];
|
||||
ports = [
|
||||
"6767:6767"
|
||||
];
|
||||
|
@ -38,6 +39,7 @@ in {
|
|||
TZ = "America/New_York";
|
||||
};
|
||||
|
||||
extra_hosts = ["lan.nelim.org=10.0.0.130"];
|
||||
ports = [
|
||||
"6766:6767"
|
||||
];
|
||||
|
|
|
@ -21,6 +21,7 @@ in {
|
|||
|
||||
volumes = ["${rwPath}/data-db:/config"];
|
||||
|
||||
extra_hosts = ["lan.nelim.org=10.0.0.130"];
|
||||
ports = [
|
||||
"8580:8080"
|
||||
#"8081:8081"
|
||||
|
@ -44,6 +45,7 @@ in {
|
|||
"${rwPath}/data-db/Calibre Library:/books"
|
||||
];
|
||||
|
||||
extra_hosts = ["lan.nelim.org=10.0.0.130"];
|
||||
ports = ["8083:8083"];
|
||||
};
|
||||
};
|
||||
|
|
|
@ -8,6 +8,7 @@ in {
|
|||
restart = "always";
|
||||
|
||||
volumes = ["${rwPath}/data:/data"];
|
||||
extra_hosts = ["lan.nelim.org=10.0.0.130"];
|
||||
ports = ["5656:5656"];
|
||||
|
||||
command = [
|
||||
|
|
|
@ -15,6 +15,7 @@ in {
|
|||
};
|
||||
|
||||
volumes = ["${rwPath}/data:/config"];
|
||||
extra_hosts = ["lan.nelim.org=10.0.0.130"];
|
||||
ports = ["9696:9696"];
|
||||
};
|
||||
|
||||
|
@ -29,6 +30,7 @@ in {
|
|||
TZ = "America/New_York";
|
||||
};
|
||||
|
||||
extra_hosts = ["lan.nelim.org=10.0.0.130"];
|
||||
ports = ["8191:8191"];
|
||||
|
||||
depends_on = ["prowlarr"];
|
||||
|
|
|
@ -7,6 +7,7 @@ in {
|
|||
image = ./images/radarr.nix;
|
||||
restart = "always";
|
||||
|
||||
extra_hosts = ["lan.nelim.org=10.0.0.130"];
|
||||
ports = ["7878:7878"];
|
||||
|
||||
environment = {
|
||||
|
|
|
@ -7,6 +7,7 @@ in {
|
|||
image = ./images/sabnzbd.nix;
|
||||
restart = "always";
|
||||
|
||||
extra_hosts = ["lan.nelim.org=10.0.0.130"];
|
||||
ports = ["8382:8082"];
|
||||
|
||||
environment = {
|
||||
|
|
|
@ -16,6 +16,7 @@ in {
|
|||
"${rwPath}/data:/app/config"
|
||||
];
|
||||
|
||||
extra_hosts = ["lan.nelim.org=10.0.0.130"];
|
||||
ports = ["5055:5055"];
|
||||
};
|
||||
}
|
||||
|
|
|
@ -7,6 +7,7 @@ in {
|
|||
image = ./images/sonarr.nix;
|
||||
restart = "always";
|
||||
|
||||
extra_hosts = ["lan.nelim.org=10.0.0.130"];
|
||||
ports = ["8989:8989"];
|
||||
|
||||
environment = {
|
||||
|
|
Loading…
Reference in a new issue