How to install docker specific version

后端 未结 8 1248
半阙折子戏
半阙折子戏 2021-01-30 17:34

How to install specific version of Docker(like 1.3.2)?

I am unable to find any documentation in docker official docs. Referring this link for Ubuntu.

<
8条回答
  •  伪装坚强ぢ
    2021-01-30 18:04

    I find easier to check available versions with

    sudo apt-cache policy docker-engine
    

    and then install the one you want:

    sudo  apt-get install docker-engine=1.7.1-0~trusty
    

    It consists on simply following the instructions from docker docs https://docs.docker.com/engine/installation/ubuntulinux/, but selecting a particular version

提交回复
热议问题