feat: Add support for app.json
continuous-integration/drone/push Build is passing Details

This commit is contained in:
Glenn Y. Rolland 2023-02-21 15:18:36 +01:00
parent e775a048fc
commit 6c7dd1db0d
2 changed files with 8 additions and 0 deletions

View File

@ -74,6 +74,7 @@ RUN apt-get update && apt-get install -y \
&& mkdir /var/log/supervisord /var/run/supervisord
COPY supervisord.conf /etc/supervisord.conf
COPY app.json /app/app.json
ENV NEXTCLOUD_UPDATE=1

7
app.json Normal file
View File

@ -0,0 +1,7 @@
{
"scripts": {
"dokku": {
"postdeploy": "pwd && occ db:convert-filecache-bigint && occ db:add-missing-indices && echo SUCCESS"
}
}
}