refactor containers
This commit is contained in:
parent
1d23c89f58
commit
2a15f00fa1
11 changed files with 195 additions and 174 deletions
21
nixos/viridian/containers/prowlarr.nix
Normal file
21
nixos/viridian/containers/prowlarr.nix
Normal 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"
|
||||
];
|
||||
};
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue