Update third_party-nextcloud.en.md

Formatting
Dieser Commit ist enthalten in:
deepc2020 2023-06-07 17:01:59 +02:00 committet von GitHub
Ursprung c94362daa4
Commit 1212003783
Es konnte kein GPG-SchlĂĽssel zu dieser Signatur gefunden werden
GPG-SchlĂĽssel-ID: 4AEE18F83AFDEB23

Datei anzeigen

@ -192,9 +192,14 @@ It shows which commands have to be executed, these have to be placed in the php-
As an an example run the following command to add the missing indices.
`docker exec -it -u www-data $(docker ps -f name=php-fpm-mailcow -q) bash -c "php /web/nextcloud/occ db:add-missing-indices"`
The update can also been done by CLI with the following command: `docker exec -it -u www-data $(docker ps -f name=php-fpm-mailcow -q) bash -c "php /web/nextcloud/updater/updater.phar"`
The update can also been done by CLI with the following command:
This can also been done in an non interactive way (e.g. CRON) with this command: `docker exec -it -u www-data $(docker ps -f name=php-fpm-mailcow -q) bash -c "php /web/nextcloud/updater/updater.phar --no-interaction"`
`docker exec -it -u www-data $(docker ps -f name=php-fpm-mailcow -q) bash -c "php /web/nextcloud/updater/updater.phar"`
This can also been done in an non interactive way (e.g. CRON) with this command:
`docker exec -it -u www-data $(docker ps -f name=php-fpm-mailcow -q) bash -c "php /web/nextcloud/updater/updater.phar --no-interaction"`
---
@ -222,4 +227,4 @@ After the changes have been made, the nginx container must be restarted.
``` bash
docker-compose restart nginx-mailcow
```
```