2023-05-21 17:41:24 +08:00
|
|
|
{ ... }:
|
|
|
|
|
|
|
|
{
|
|
|
|
# Prowlarr
|
|
|
|
virtualisation.oci-containers.containers."prowlarr" = {
|
|
|
|
autoStart = true;
|
|
|
|
image = "cr.hotio.dev/hotio/prowlarr";
|
|
|
|
volumes = [
|
|
|
|
"/srv/containers/prowlarr:/config"
|
2023-05-24 23:01:22 +08:00
|
|
|
"/srv/data:/data"
|
2023-05-21 17:41:24 +08:00
|
|
|
];
|
|
|
|
ports = [ "9696:9696" ];
|
2023-07-30 09:13:40 +08:00
|
|
|
extraOptions = ["--network=media-stack"];
|
2023-05-21 17:41:24 +08:00
|
|
|
};
|
|
|
|
}
|