This commit is contained in:
Jana Dönszelmann 2025-08-03 16:18:32 +02:00
parent 552eceaf18
commit d35531c1bd
No known key found for this signature in database
15 changed files with 365 additions and 4 deletions

View file

@ -0,0 +1,22 @@
{ config, ... }:
let
port = 11002;
in
{
config.networking.firewall.allowedTCPPorts = [ port ];
config.virtualisation.oci-containers.containers = {
overseerr = {
image = "mirror.gcr.io/fallenbagel/jellyseerr:develop";
environment = {
PORT = "5555";
TZ = "Europe/Amsterdam";
LOG_LEVEL = "debug";
};
extraOptions = [ "--network=host" ];
volumes = [
"/var/lib/microvms/rr/storage/data/overseerr:/app/config"
];
};
};
}