do not ship updatenotification, fixes #112

Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de>
This commit is contained in:
Arthur Schiwon 2020-02-06 23:57:33 +01:00
Родитель 26639f43a4
Коммит c8ae1ed000
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 7424F1874854DF23
2 изменённых файлов: 5 добавлений и 0 удалений

Просмотреть файл

@ -81,6 +81,8 @@ RUN cd /root/ && \
chmod +x occ && \
chown -R www-data /var/www/html
RUN rm -Rf /var/www/html/apps/updatenotification
RUN cd /var/www/html/apps && \
mkdir richdocuments && \
tar -xf /root/richdocuments.tar.gz -C richdocuments --strip-components=1 && \

3
setup
Просмотреть файл

@ -93,6 +93,9 @@ if [ "$NC_IS_INSTALLED" -eq 0 ] ; then
error_msg "Error while installing Nextcloud. Please check the apache log within the Nextcloud docker container, and (if existing) the nextcloud.log file in $NC_DATADIR."
exit 22;
fi
else
# TODO: disabling updatenotification can be removed with 19
$OCC app:disable updatenotification
fi
UPGRADE_LOGFILE="/var/log/nextcloud-upgrade_"`date +%y_%m_%d`".log"