]> BookStack Code Mirror - website/blob - resources/docs/admin/updates.md
dbd2dc548b985942f3252815b1d382f117f44a4c
[website] / resources / docs / admin / updates.md
1 # Updating BookStack
2
3 BookStack is updated regularly and the version numbering follows [semantic versioning](http://semver.org/). The latest release can be found on [GitHub here](https://github.com/ssddanbrown/BookStack/releases) and detailed information on releases is posted on the [BookStack blog here](https://www.bookstackapp.com/blog/tag/releases/).
4
5 **Before updating you should back up the database and any file uploads to prevent potential data loss**. Updating is currently done via Git version control. To update BookStack you can run the following command in the root directory of the application:
6 ```
7 git pull origin release && composer install && php artisan migrate
8 ```
9 This command will update the repository that was created in the installation, install the PHP dependencies using `composer` then run then update the database with any required changes.