mirror of
https://github.com/kevinveenbirkenbach/computer-playbook.git
synced 2024-11-22 12:41:05 +01:00
Updated role docker-nextcloud Readme.md
This commit is contained in:
parent
6908eea40f
commit
ede2e16a1e
@ -6,6 +6,30 @@ To access the database execute
|
||||
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 upgrade
|
||||
docker exec -it -u www-data nextcloud_application_1 /var/www/html/occ maintenance:mode --off
|
||||
```
|
||||
|
||||
## occ
|
||||
|
||||
To use occ run:
|
||||
|
Loading…
Reference in New Issue
Block a user