Add the nextcloud cron service

This is necessary for some apps to work, in this instance it is being
enabled for the news app.
This commit is contained in:
Tristan Daniël Maat 2020-09-29 12:57:04 +01:00
parent 8e9b6169b1
commit 7d15e4c60b
Signed by: tlater
GPG key ID: 49670FD774E43268

View file

@ -25,6 +25,16 @@
];
};
nextcloud-cron = {
image = "nextcloud:fpm-alpine";
entrypoint = "/cron.sh";
dependsOn = ["nextcloud-postgres"];
extraDockerOptions = [
"--volumes-from"
"nextcloud"
];
};
nextcloud-nginx = {
image = "nginx:alpine";
dependsOn = ["nextcloud"];