Upgrade Allure Testops via Docker Compose
This guide describes the common upgrade procedure for an Allure Testops instance that has been installed via Docker Compose.
Before you begin, make sure to read the release notes for the Allure Testops version you are upgrading to. In case you are skipping one or more versions, read the release notes for the skipped versions, too.
The release notes may contain crucial information on how to adapt your configuration files or migrate your data to the new version of Allure Testops.
In the directory of your installation, edit the .env file in a text editor.
- In the
ALLURE_VERSION
parameter, specify the version of Allure Testops you want to upgrade to. - If necessary, modify other parameters according to the relevant release notes.
- In the
Open a terminal application.
Navigate to the Allure Testops installation directory, for example:
cd ~/allure-testops
Make sure Docker is connected to the Qameta repository by running this command:
docker login --username USERNAME --password PASSWORD
where USERNAME and PASSWORD are the credentials provided to you by the Qameta sales team.
Upgrade Docker images:
docker compose pull
This process may take a few minutes, depending on the speed of your internet connection.
Restart Allure Testops:
docker compose down; docker compose up -d