Is it possible to install DockerCE in the specific version 17.03 on RHEL7 ?
There is information here:
- https://docs.docker.com/engine/installation/linux/rhel/#install-using-the-repository about the installing Docker on RHEL but there is no version info.
and here with Docker 17.03 but only in Docker EE not Docker CE
Procedure for a disposable dev test RHEL 7.3. Never do this in production.
The above assumes you are NOT using a proxy. If you are, you will need to add
proxy=http://myproxy:myport
lines pretty much at the end of each block in each file under/etc/yum.repos.d/
, or add it to/etc/yum.conf
.Hope this helps.
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:
Install the latest version of Docker CE on RHEL:
Alternatively, you can specify a specific version of Docker CE:
Start Docker:
Test your Docker CE installation:
I had the same problem running 7.x and I did the following:
With this you'll not fall on the pigz error
Also you need to keep an eye on the container-selinux since i'm using a direct link to the version 2.55-1
INSTALLING DOCKER RHEL/CENTOS
Got To: https://download.docker.com/linux/centos/7/x86_64/stable/Packages/
download: docker-ce-17.03.2.ce-1.el7.centos.x86_64.rpm 2018-06-08 05:48 19M download: docker-ce-selinux-17.03.2.ce-1.el7.centos.noarch.rpm 2018-06-08 05:48 29K
Upload to server
yum -y install docker-ce-selinux-17.03.2.ce-1.el7.centos.noarch.rpm
yum -y install docker-ce-17.03.2.ce-1.el7.centos.x86_64.rpm
sudo systemctl start docker
REF: install Docker CE 17.03 on RHEL7 https://nickjanetakis.com/blog/docker-tip-39-installing-docker-ce-on-redhat-rhel-7x https://docs.docker.com/install/linux/docker-ee/rhel/#set-up-the-repository
Well maybe you can acheive installing Docker CE 17.06 or 17.03 on RHEL 7.3, but Docker documentation is quite clear:
See https://docs.docker.com/engine/installation/linux/docker-ee/rhel/
For those who are facing below error:
While installing docker on RHEL 7.3+ we need to execute:
which will enable extra rpms to be installed on yum update.After this execute:
Then follow: Install Docker
This has worked for me.