Services/Nextcloud: Update to v31.0.6
This commit is contained in:
@ -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"
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
|
};
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user