install Docker CE 17.03 on RHEL7

user3313834 picture user3313834 · Mar 23, 2017 · Viewed 94k times · Source

Is it possible to install DockerCE in the specific version 17.03 on RHEL7 ?

Answer

Matt Schuchard picture Matt Schuchard · Mar 23, 2017

As per the documentation here, you can install Docker CE 17.03 (or future versions) on RHEL 7.3 64-bit via:

Set up the Docker CE repository on RHEL:

sudo yum install -y yum-utils
sudo yum-config-manager --add-repo https://download.docker.com/linux/centos/docker-ce.repo
sudo yum makecache fast

Install the latest version of Docker CE on RHEL:

sudo yum -y install docker-ce

Alternatively, you can specify a specific version of Docker CE:

sudo yum -y install docker-ce-<version>-<release>

Start Docker:

sudo systemctl start docker

Test your Docker CE installation:

sudo docker run hello-world