computer-playbook/roles/docker-nextcloud/README.md

53 lines
1.7 KiB
Markdown
Raw Normal View History

2020-12-24 14:27:31 +01:00
# role docker-nextcloud
## database access
To access the database execute
```bash
docker exec -it nextcloud_database_1 /bin/mysql -u nextcloud -p
```
## update
To update the nextcloud container execute the following commands on the server:
```bash
docker pull nextcloud
docker stop nextcloud_application_1
docker rm <your_nextcloud_container>
```
Afterwards run the server manager.
You can check the status of the update by typing in:
```bash
docker logs nextcloud_application_1
```
If nextcloud stays in the maintenance mode after the update try the following:
```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 upgrade
docker exec -it -u www-data nextcloud_application_1 /var/www/html/occ maintenance:mode --off
```
2020-12-24 14:27:31 +01:00
## occ
To use occ run:
```bash
docker exec -it -u www-data nextcloud_application_1 /var/www/html/occ
```
## unlock files
```bash
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 -u www-data nextcloud_application_1 /var/www/html/occ maintenance:mode --off
2020-12-24 14:27:31 +01:00
```
## further information
- https://github.com/nextcloud/docker/blob/master/.examples/docker-compose/with-nginx-proxy/mariadb/fpm/docker-compose.yml
2021-08-18 01:51:00 +02:00
- https://goneuland.de/nextcloud-upgrade-auf-neue-versionen-mittels-docker/
- https://help.nextcloud.com/t/cant-start-nextcloud-because-the-version-of-the-data-is-higher-than-the-docker-image-version-and-downgrading-is-not-supported/109438