back to readarr

This commit is contained in:
Chris Dombroski 2024-10-24 12:44:23 -04:00
parent 4f8ad99ef1
commit b087d51af5
5 changed files with 3 additions and 30 deletions

View file

@ -18,4 +18,3 @@ local-data: "readarr.icanttype.org. IN A 10.42.69.100"
local-data: "qbittorrent.icanttype.org. IN A 10.42.69.100"
local-data: "calibre.icanttype.org. IN A 10.42.69.100"
local-data: "calibre-web.icanttype.org. IN A 10.42.69.100"
local-data: "lazylibrarian.icanttype.org. IN A 10.42.69.100"

View file

@ -35,6 +35,7 @@ in
ezModules.docker-proxy
ezModules.docker-qbittorrent
ezModules.docker-radarr
ezModules.docker-readarr
ezModules.docker-runner
ezModules.docker-sonarr
ezModules.docker-static-web

View file

@ -30,9 +30,7 @@
swag_url = "calibre-web.icanttype.org";
swag_port = "8083";
};
extraOptions = [
"--network=www"
];
extraOptions = [ "--network=www" ];
};
};
};

View file

@ -1,25 +0,0 @@
{ pkgs, ... }:
{
virtualisation = {
containers.enable = true;
podman.enable = true;
oci-containers.containers = {
lazylibrarian = {
image = "linuxserver/lazylibrarian:latest";
volumes = [
"lazylibrarian-config:/config"
"/video-data:/data"
];
environment.TZ = "America/New_York";
labels = {
swag = "enable";
};
extraOptions = [
"--network=www"
"--pull=newer"
];
};
};
};
}