Software-Installation

如何在 Linux 上更新 docker-machine?

  • February 4, 2020

我使用Install Docker Machine中提供的說明在我的 Ubuntu 18.04 上安裝了 docker-machine 。現在如何將其更新到更新的版本?

正如我發現的那樣,只需重新執行連結中更改版本的安裝命令就足夠了

例如,此命令安裝版本 0.14.0:

curl -L https://github.com/docker/machine/releases/download/v0.14.0/docker-machine-uname -s`-`uname -m` >/tmp/docker-machine && \
sudo install /tmp/docker-machine /usr/local/bin/docker-machine

如果要將其更新到 0.16.0,只需執行:

curl -L https://github.com/docker/machine/releases/download/v0.16.0/docker-machine-`uname -s`-`uname -m` >/tmp/docker-machine && \
sudo install /tmp/docker-machine /usr/local/bin/docker-machine

引用自:https://unix.stackexchange.com/questions/565796