Skip to content

Commit

Permalink
docs: Add note about updating the Nextcloud installation
Browse files Browse the repository at this point in the history
Signed-off-by: Julius Härtl <[email protected]>
  • Loading branch information
juliusknorr committed May 14, 2024
1 parent ea5d7d1 commit 560d601
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion docs/basics/update.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,19 @@

## Updating the Nextcloud server

As Nextcloud containers are bound to a server major version and the code is updated through manual git pull, you only need to call occ update on demand
As Nextcloud containers are bound to a server major version and the code is updated through manual git pull.

It is recommended to stay up to date with the latest development version of the Nextcloud server:

```bash
cd workspace/server
git pull
git submodule update
```

For other apps checked out you might want to run a separate `git pull` in the respective directories.

If nextcloud requires migration steps it will ask you to run an upgrade which can be done with the following command:

```bash
docker compose exec nextcloud occ upgrade
Expand Down

0 comments on commit 560d601

Please sign in to comment.