Add the nextcloud cron service

This is necessary for some apps to work, in this instance it is being
enabled for the news app.
pull/22/head
Tristan Daniël Maat 2020-09-29 12:57:04 +01:00
parent 8e9b6169b1
commit 7d15e4c60b
Signed by: tlater
GPG Key ID: 49670FD774E43268
1 changed files with 10 additions and 0 deletions

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"];