Skip to content

How to upgrade Docker using Rancher's install script

Article Number: 000020170

Environment

  • A supported node with a version of Docker needing to be upgraded
  • Curl or Wget installed

Situation

Rancher provides quick scripts for installing Docker, which are available for the most recent versions of Docker https://rancher.com/docs/rancher/v2.x/en/installation/requirements/installing-docker/  Upgrading Docker on your machine using these scripts is equally as simple.

Resolution

Just run the script with the version number you are trying to upgrade to. Let's say you're running 18.09 and want to upgrade to 19.03. Simply provide the version number as the name of the script to run. For example:

curl https://releases.rancher.com/install-docker/27.2.sh | sh

or

wget -O- https://releases.rancher.com/install-docker/27.2.sh | sh

This will throw a warning that Docker is already installed, stop the running Docker engine, and upgrade your version. Note that restarting Docker will also stop any running container or workloads running on this host.