Upgrading Osprey on Linux
The bump.sh script automates the process of upgrading the Osprey container version in your deployment. It handles bringing the stack down, updating the version reference, and restarting automatically.
Usage
./bump.sh <patch_version>
Examples
./bump.sh 185 # Sets version to x.y.185
What It Does
- Reads the current version from line 1 of
docker-compose.yml - Stops all containers by running
docker-compose down - Updates
docker-compose.ymlwith the new version number - Restarts containers by running
docker-compose up -d