目前我已经获得了Docker v.1.7,并且我想将其升级到最新版本(目前为1.8)。
重要部分:我想在不重新安装Docker和boot2docker的情况下执行此操作。我无法找到有关它的任何信息。
有可能吗?我怎么能这样做?
答案 0 :(得分:6)
这是一个老线程,但我在Windows上遇到了同样的问题,并且接受的答案对我不起作用,所以我将其发布给其他人。
您可以通过打开Docker快速入门终端并运行:
来检查您的版本 $ docker --version
Docker version 17.10.0-ce, build f4ffd25
要更新所有您需要做的就是运行$ docker-machine upgrade
User1234@HP-1234 MINGW64 ~
$ docker-machine upgrade
Waiting for SSH to be available...
Detecting the provisioner...
Upgrading docker...
Stopping machine to do the upgrade...
Upgrading machine "default"...
Default Boot2Docker ISO is out-of-date, downloading the latest release...
Latest release for github.com/boot2docker/boot2docker is v18.01.0-ce
Downloading C:\Users\User1234\.docker\machine\cache\boot2docker.iso from https://github.com/boot2docker/boot2docker/releases/download/v18.01.0-ce/boot2docker.iso...
0%....10%....20%....30%....40%....50%....60%....70%....80%....90%....100%
Copying C:\Users\User1234\.docker\machine\cache\boot2docker.iso to C:\Users\User1234\.docker\machine\machines\default\boot2docker.iso...
Starting machine back up...
(default) Check network to re-create if needed...
(default) Windows might ask for the permission to configure a dhcp server. Sometimes, such confirmation window is minimized in the taskbar.
(default) Waiting for an IP...
Restarting docker...
答案 1 :(得分:4)
如果您已经拥有boot2docker,则通常会进行升级:
boot2docker stop
boot2docker download
boot2docker start
docker@boot2docker:~$ docker version
Client:
Version: 1.8.1
API version: 1.20
Go version: go1.4.2
Git commit: d12ea79
Built: Thu Aug 13 02:49:29 UTC 2015
OS/Arch: linux/amd64
话虽如此,未来, docker machine 是推荐使用的项目。
请参阅" Get started with Docker Machine and a local VM"。