Unverified Commit 62f9c065 authored by Tom Moulard's avatar Tom Moulard
Browse files

nextcloud: adding doc on how to do an upgrade

parent 4e8d15c4
Loading
Loading
Loading
Loading
+13 −0
Original line number Diff line number Diff line
@@ -13,3 +13,16 @@ or for off-premises file storage hosting.
The original ownCloud developer Frank Karlitschek forked ownCloud and created
Nextcloud, which continues to be actively developed by Karlitschek and other
members of the original ownCloud team.

## Upgrade
How to upgrade your Nextcloud instance:
```bash
docker-compose pull nextcloud
docker-compose stop nextcloud && docker-compose up -d nextcloud
docker-compose exec -u www-data nextcloud ./occ upgrade^C
```

To remove maintenance mode:
```bash
docker-compose exec -u www-data nextcloud php occ maintenance:mode --off
```