Versioning
To maintain the version that you would like, be sure to set this inside of your docker-compose.yml file.
The version defined in the "image:" line will be where you can control what version you are running. I am using 4.21.1 as an example.
*Be sure to take a backup of your database/files before making any changes*
Once you make the change, to the version you want to run, be sure to restart the docker stack:
docker-compose down && docker-compose up -d
Before, and after, be sure to verify the version you are currently running by hovering over the "question mark" in the top right hand side of the UI:
And then clicking on "About IriusRisk...":
From here you will see a popup that displays your current version (this example is using version 4.25.0):
If you choose to stay on the latest version available, you can set the version as just "4" and this will pull the latest version available (4.X.X) with a pull/restart:
- docker-compose down
- docker-compose pull
- docker-compose up -d
*Again, be sure to save your database/files before upgrading or changing the version*
Upgrading
When upgrading, please follow our Upgrade Guide and be sure to backup the database and files before proceeding.
You would follow the same steps as above for the latest version, however you can specify a different version, and run the same docker steps above, if you are wanting to upgrade to a different version than the latest available:
- Backup database/files
- Set version in docker-compose.yml (example image: continuumsecurity/iriusrisk-prod:tomcat-4.21.1)
- docker-compose down
- docker-compose pull
- docker-compose up -d
Comments
0 comments
Article is closed for comments.