2024-08-08 09:02:42 +08:00
|
|
|
{...}: let
|
2024-06-16 23:08:52 +08:00
|
|
|
port = "7878";
|
2024-08-08 09:02:42 +08:00
|
|
|
in {
|
2024-01-23 09:45:42 +08:00
|
|
|
virtualisation.oci-containers.containers = {
|
|
|
|
# Movie collection manager for Usenet and BitTorrent users
|
|
|
|
radarr = {
|
|
|
|
autoStart = true;
|
2024-08-11 20:05:27 +08:00
|
|
|
image = "ghcr.io/hotio/radarr:release-5.8.3.8933";
|
2024-01-23 09:45:42 +08:00
|
|
|
ports = [
|
2024-06-16 23:08:52 +08:00
|
|
|
"${port}:7878/tcp" # WebUI
|
2024-01-23 09:45:42 +08:00
|
|
|
];
|
|
|
|
volumes = [
|
|
|
|
# Media library
|
|
|
|
"/srv/multimedia:/data:rw"
|
|
|
|
# Container data
|
|
|
|
"/srv/containers/radarr:/config:rw"
|
|
|
|
];
|
2024-06-16 23:08:52 +08:00
|
|
|
environment = {
|
|
|
|
PUID = "1000";
|
|
|
|
PGID = "100";
|
|
|
|
};
|
2024-01-23 09:45:42 +08:00
|
|
|
extraOptions = [
|
|
|
|
"--network=media-stack"
|
|
|
|
];
|
|
|
|
};
|
|
|
|
};
|
2024-06-05 21:14:22 +08:00
|
|
|
services.traefik.dynamicConfigOptions.http.routers = {
|
|
|
|
radarr = {
|
|
|
|
rule = "Host(`radarr.kanto.dev`)";
|
|
|
|
entryPoints = [
|
|
|
|
"websecure"
|
|
|
|
];
|
|
|
|
middlewares = [
|
2024-07-08 22:08:39 +08:00
|
|
|
"internal"
|
2024-06-05 21:14:22 +08:00
|
|
|
];
|
|
|
|
service = "radarr";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
services.traefik.dynamicConfigOptions.http.services = {
|
|
|
|
radarr.loadBalancer.servers = [
|
2024-08-08 09:02:42 +08:00
|
|
|
{url = "http://127.0.0.1:${port}";}
|
2024-06-05 21:14:22 +08:00
|
|
|
];
|
|
|
|
};
|
2024-01-23 09:45:42 +08:00
|
|
|
}
|