Skip to content

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

  1. Reads the current version from line 1 of docker-compose.yml
  2. Stops all containers by running docker-compose down
  3. Updates docker-compose.yml with the new version number
  4. Restarts containers by running docker-compose up -d