refactor containers

This commit is contained in:
♥ Minnie ♥ 2024-01-23 09:45:42 +08:00
parent 1d23c89f58
commit 2a15f00fa1
No known key found for this signature in database
11 changed files with 195 additions and 174 deletions

View file

@ -0,0 +1,21 @@
{ ... }:
{
virtualisation.oci-containers.containers = {
# Indexer manager/proxy built on the popular arr .net/reactjs base stack to integrate with your various PVR apps.
prowlarr = {
autoStart = true;
image = "ghcr.io/hotio/prowlarr:nightly-1.10.3.4070";
ports = [
"9696:9696/tcp" # WebUI
];
volumes = [
# Container data
"/srv/containers/prowlarr:/config:rw"
];
extraOptions = [
"--network=media-stack"
];
};
};
}