Is it possible to install DockerCE in the specific version 17.03 on RHEL7 ?
There is information here:
By following From @Matt Schuchard and @Akash Srivastava
combining their commands together I found below command lines working for me.
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
sudo subscription-manager repos --enable rhel-7-server-extras-rpms
sudo yum update
sudo yum -y install docker-ce
sudo systemctl start docker
Thank you