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
- Reads the current version from line 1 of
docker-compose.yml - Stops all containers by running
podman-compose down - Updates
docker-compose.ymlwith the new version number - Restarts containers by running
podman-compose up -d