1

Services/Paperless: Update to v2.17.1

This commit is contained in:
2025-07-11 21:31:41 +02:00
parent 55b9f9f6bc
commit 9b88fce80d

View File

@ -3,8 +3,11 @@
lib, lib,
pkgs, pkgs,
... ...
}: { }: let
virtualisation.oci-containers.containers.paperless-redis = { paperlessVersion = "2.17.1";
in {
virtualisation.oci-containers.containers = {
paperless-redis = {
image = "redis:7"; image = "redis:7";
autoStart = true; autoStart = true;
@ -32,7 +35,7 @@
]; ];
}; };
virtualisation.oci-containers.containers.paperless-postgres = { paperless-postgres = {
image = "postgres:15"; image = "postgres:15";
autoStart = true; autoStart = true;
@ -64,8 +67,8 @@
]; ];
}; };
virtualisation.oci-containers.containers.paperless = { paperless = {
image = "ghcr.io/paperless-ngx/paperless-ngx:latest"; image = "ghcr.io/paperless-ngx/paperless-ngx:${paperlessVersion}";
autoStart = true; autoStart = true;
dependsOn = [ dependsOn = [
@ -101,4 +104,5 @@
"--net=behind-nginx" "--net=behind-nginx"
]; ];
}; };
};
} }