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