Skip to content

Upgrading Osprey on Windows

The bump.ps1 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.ps1 <patch_version>

Examples

.\bump.ps1 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 podman-compose down
  3. Updates docker-compose.yml with the new version number
  4. Restarts containers by running podman-compose up -d