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:
parent
8e9b6169b1
commit
7d15e4c60b
|
@ -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"];
|
||||
|
|
Loading…
Reference in a new issue