Run Jellyseerr in NixNG container

This commit is contained in:
Pim Kunis 2024-12-19 21:32:21 +01:00
parent 708e6b4336
commit 49ecab9603
6 changed files with 44 additions and 6 deletions

View file

@ -2,6 +2,7 @@
globals,
config,
lib,
utils,
...
}: {
options.media.enable = lib.mkEnableOption "media";
@ -167,7 +168,7 @@
volumes.config.persistentVolumeClaim.claimName = "jellyseerr";
containers.jellyseerr = {
image = globals.images.jellyseerr;
image = utils.mkNixNGImage "jellyseerr";
ports.web.containerPort = 5055;
imagePullPolicy = "IfNotPresent";