setup new host + migrate containers to it

This commit is contained in:
♥ Minnie ♥ 2023-10-30 16:39:05 +08:00
parent 804423319f
commit 0949fbc9c7
12 changed files with 8 additions and 15 deletions

View file

@ -0,0 +1,15 @@
{ ... }:
{
# Radarr
virtualisation.oci-containers.containers."radarr" = {
autoStart = true;
image = "cr.hotio.dev/hotio/radarr";
volumes = [
"/srv/containers/radarr:/config"
"/srv/data:/data"
];
ports = [ "7878:7878" ];
extraOptions = ["--network=media-stack"];
};
}