1

Services/Nextcloud: Update to v31.0.6

This commit is contained in:
2025-07-11 22:09:22 +02:00
parent 66b12bbcb1
commit 6fa699d234

View File

@ -3,7 +3,9 @@
lib, lib,
pkgs, pkgs,
... ...
}: { }: let
nextcloudVersion = "31.0.6-apache";
in {
systemd.services.nextcloud-cron = { systemd.services.nextcloud-cron = {
enable = true; enable = true;
description = "Nextcloud Cron Job"; description = "Nextcloud Cron Job";
@ -26,7 +28,8 @@
wantedBy = ["timers.target"]; wantedBy = ["timers.target"];
}; };
virtualisation.oci-containers.containers.nextcloud-db = { virtualisation.oci-containers.containers = {
nextcloud-db = {
image = "postgres:alpine"; image = "postgres:alpine";
autoStart = true; autoStart = true;
@ -60,7 +63,7 @@
]; ];
}; };
virtualisation.oci-containers.containers.nextcloud-memcache = { nextcloud-memcache = {
image = "redis:alpine"; image = "redis:alpine";
autoStart = true; autoStart = true;
@ -90,8 +93,8 @@
]; ];
}; };
virtualisation.oci-containers.containers.nextcloud = { nextcloud = {
image = "nextcloud:apache"; image = "nextcloud:${nextcloudVersion}";
autoStart = true; autoStart = true;
login = { login = {
@ -150,4 +153,5 @@
"--net=behind-nginx" "--net=behind-nginx"
]; ];
}; };
};
} }