install Docker CE 17.03 on RHEL7

前端 未结 7 1443
轮回少年
轮回少年 2020-12-04 07:11

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

  • There is information here:

    • https://docs.docker.com/engine/installa
7条回答
  •  臣服心动
    2020-12-04 07:52

    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

提交回复
热议问题