YouTrack Standalone 2020.2 Help

Upgrade with Docker Container

This page describes various scenarios of upgrading an existing YouTrack service using the YouTrack docker image.

Prerequisites

Before you upgrade, perform the following prerequisite tasks:

  • Create a backup of your current database. YouTrack Standalone does not provide forward database compatibility. Your database is migrated to the format that is compatible with the latest version during the upgrade procedure. This means that you cannot revert to a previous version and continue to use the database that was processed during the upgrade.

  • Copy the backup of your current database to a secure location just in case you encounter problems with the upgrade and need to roll back to the previous version.

  • Verify that your YouTrack license supports the upgrade. To view the license limitations, click the Global Settings link in the Administration menu. If your free update period has expired, you need to extend your subscription.

  • Mind the recommended upgrade path. The current version of your installation is shown at the bottom of any page in the application.

Recommended upgrade path

Existing version

Upgrade to version

6.5 or earlier

YouTrack 7.0

7.0

2017.1

2017.x

2018.x

2018.x

2019.x

Upgrade a Docker Image

  1. Create a backup of the YouTrack database while your existing YouTrack installation is running.

  2. Stop the running YouTrack docker container:

    docker exec <CONTAINER_ID> stop
  3. Remove the container with the previous version.

    docker rm <CONTAINER_ID>

    Otherwise, when you run the new version of the container, the command will fail because of the container names conflicts.

  4. Pull an image of the latest YouTrack version from the Docker YouTrack Repository:

    docker pull jetbrains/youtrack:<version>

    Where <version> is a full version number of an YouTrack build. See the complete list of available versions.

  5. Execute the following command to run a container with the new YouTrack version, that you have pulled from the repository. All other attributes of the command (volumes and port mappings) must be the same as you have used to run the previous version of the YouTrack image:

    docker run -it --name <arbitrary-youtrack-container-name> \ -v <path to data directory>:/opt/youtrack/data \ -v <path to conf directory>:/opt/youtrack/conf \ -v <path to logs directory>:/opt/youtrack/logs \ -v <path to backups directory>:/opt/youtrack/backups \ -p <port on host>:8080 \ jetbrains/youtrack:<new version>
    • In the console output, an URL to the web-based Configuration Wizard is provided.

  6. In a browser, open the web-based Configuration Wizard by the URL.

  7. Review the upgrade settings. Click Next.

  8. Review you license. If required, you can also update your license on this page.

    Review your license
  9. When done, click Upgrade.

    • YouTrack Standalone launches its components.

      Do not close the page in the browser until the setup is complete. When the YouTrack Standalone server is ready, you are redirected to the login page.

  10. Enter the credentials for the YouTrack Standalone administrator account and click the Log in button.

    • YouTrack opens to the Dashboard page.

    Your YouTrack Standalone installation is upgraded and ready to use.

Upgrade Another Installation with Docker Image

  1. Create a backup of the YouTrack database while your existing YouTrack installation is running.

  2. Stop the existing YouTrack service.

  3. Pull an image of the latest YouTrack version from the Docker YouTrack Repository:

    docker pull jetbrains/youtrack:<version>

    Where <version> is a full version number of an YouTrack build. See the complete list of available versions.

  4. Create and configure YouTrack-specific directories on the host machine.
  5. Copy the backup file of the YouTrack database into the backups directory, that you created in the previous step.

  6. Run the container with YouTrack server and map YouTrack data volumes and port.
    • YouTrack service starts with the web-based Configuration Wizard. The URL at which you can access the wizard is displayed in the command output.

  7. In a browser, open the URL to access the wizard.

  8. In the Configuration Wizard, click Upgrade.

    Configuration wizard starts

  9. On the Select Upgrade Source page, click the Select button and select the backup file as an upgrade source.

    Select a source for upgrade
    Click Next.

  10. On the Confirm Settings page, confirm your system settings and the location of system directories.

    Docker upgrade confirm settings

  11. Review you license. If required, you can also update your license on this page.

  12. When done, click Upgrade.

    • YouTrack Standalone launches its components.

      Do not close the page in the browser until the setup is complete. When the YouTrack Standalone server is ready, you are redirected to the login page.

  13. Enter the credentials for the YouTrack Standalone administrator account and click the Log in button.

    • YouTrack opens to the Dashboard page.

    Your YouTrack Standalone installation is upgraded and ready to use.

Last modified: 1 July 2020