To update to a new Chevereto version re-build the container image (see [BUILDING](BUILDING.md)) to reflect the target version.
### One-click updating
Run the following command to update all instances. The process will swap every instance to the new container image and perform the necessary database updates.
```sh
./update.sh
```
### Manual updating
Swap to the new container image by down plus up-d by passing the `NAMESPACE` of your project. Once done, execute the `app/bin/legacy -C update` command to perform the necessary database updates.
```sh
make down NAMESPACE=yourproject
make up-d NAMESPACE=yourproject
make exec NAMESPACE=yourproject COMMAND="app/bin/legacy -C update"