Services/Nextcloud: Update to v31.0.6
This commit is contained in:
@ -3,7 +3,9 @@
|
||||
lib,
|
||||
pkgs,
|
||||
...
|
||||
}: {
|
||||
}: let
|
||||
nextcloudVersion = "31.0.6-apache";
|
||||
in {
|
||||
systemd.services.nextcloud-cron = {
|
||||
enable = true;
|
||||
description = "Nextcloud Cron Job";
|
||||
@ -26,7 +28,8 @@
|
||||
wantedBy = ["timers.target"];
|
||||
};
|
||||
|
||||
virtualisation.oci-containers.containers.nextcloud-db = {
|
||||
virtualisation.oci-containers.containers = {
|
||||
nextcloud-db = {
|
||||
image = "postgres:alpine";
|
||||
autoStart = true;
|
||||
|
||||
@ -60,7 +63,7 @@
|
||||
];
|
||||
};
|
||||
|
||||
virtualisation.oci-containers.containers.nextcloud-memcache = {
|
||||
nextcloud-memcache = {
|
||||
image = "redis:alpine";
|
||||
autoStart = true;
|
||||
|
||||
@ -90,8 +93,8 @@
|
||||
];
|
||||
};
|
||||
|
||||
virtualisation.oci-containers.containers.nextcloud = {
|
||||
image = "nextcloud:apache";
|
||||
nextcloud = {
|
||||
image = "nextcloud:${nextcloudVersion}";
|
||||
autoStart = true;
|
||||
|
||||
login = {
|
||||
@ -150,4 +153,5 @@
|
||||
"--net=behind-nginx"
|
||||
];
|
||||
};
|
||||
};
|
||||
}
|
||||
|
Reference in New Issue
Block a user