Changed nextcloud_application_1 to nextcloud-application-1

This commit is contained in:
Kevin Veen-Birkenbach 2021-11-12 12:45:41 +01:00
parent 13c600425a
commit 440a6cb17c

View File

@ -25,21 +25,21 @@ It is only possible to update from one to the next major version at a time
You can check the status of the update by typing in: You can check the status of the update by typing in:
```bash ```bash
docker logs nextcloud_application_1 docker logs nextcloud-application-1
``` ```
If nextcloud stays in the maintenance mode after the update try the following: If nextcloud stays in the maintenance mode after the update try the following:
```bash ```bash
docker exec -it -u www-data nextcloud_application_1 /var/www/html/occ maintenance:mode --on docker exec -it -u www-data nextcloud-application-1 /var/www/html/occ maintenance:mode --on
docker exec -it -u www-data nextcloud_application_1 /var/www/html/occ upgrade docker exec -it -u www-data nextcloud-application-1 /var/www/html/occ upgrade
docker exec -it -u www-data nextcloud_application_1 /var/www/html/occ maintenance:mode --off docker exec -it -u www-data nextcloud-application-1 /var/www/html/occ maintenance:mode --off
``` ```
If the update process fails execute If the update process fails execute
```bash ```bash
docker exec -it -u www-data nextcloud_application_1 /var/www/html/occ maintenance:repair docker exec -it -u www-data nextcloud-application-1 /var/www/html/occ maintenance:repair
``` ```
and disable the mal functioning apps. and disable the mal functioning apps.
@ -63,14 +63,14 @@ bash ./docker-volume-recover.sh "nextcloud_database" "$(sha256sum /etc/machine-i
To use occ run: To use occ run:
```bash ```bash
docker exec -it -u www-data nextcloud_application_1 /var/www/html/occ docker exec -it -u www-data nextcloud-application-1 /var/www/html/occ
``` ```
## unlock files ## unlock files
```bash ```bash
docker exec -it -u www-data nextcloud_application_1 /var/www/html/occ maintenance:mode --on docker exec -it -u www-data nextcloud-application-1 /var/www/html/occ maintenance:mode --on
docker exec -it nextcloud_database_1 mysql -u nextcloud -pPASSWORD1234132 -D nextcloud -e "delete from oc_file_locks where 1" docker exec -it nextcloud_database_1 mysql -u nextcloud -pPASSWORD1234132 -D nextcloud -e "delete from oc_file_locks where 1"
docker exec -it -u www-data nextcloud_application_1 /var/www/html/occ maintenance:mode --off docker exec -it -u www-data nextcloud-application-1 /var/www/html/occ maintenance:mode --off
``` ```
## further information ## further information