Docker Machine 项目

安装

Docker Machine 可以在多种操作系统平台上安装,包括 Linux、macOS,以及 Windows。

** macOS、Windows **
Docker Desktop for Mac/Windows 自带 docker-machine 二进制包,安装之后即可使用。

查看版本信息。

1
2
$ docker-machine -v
docker-machine.exe version 0.16.1, build cce350d7

** Linux **

从 官方 GitHub Release 处直接下载编译好的二进制文件即可。例如,在 Linux 64 位系统上直接下载对应的二进制包。

1
2
3
4
[root@VM_0_3_centos home]# base=https://github.com/docker/machine/releases/download/v0.16.0 &&
curl -L $base/docker-machine-$(uname -s)-$(uname -m) >/tmp/docker-machine &&
sudo mv /tmp/docker-machine /usr/local/bin/docker-machine &&
chmod +x /usr/local/bin/docker-machine

Docker Machine 支持多种后端驱动,包括虚拟机、本地主机和云平台等。

创建本地主机实例

** Linux Virtualbox 驱动 **

使用 virtualbox 类型的驱动,创建一台 Docker 主机,命名为 test。

1
2
3
4
5
[root@VM_0_3_centos ~]# docker-machine create --driver virtualbox manager1
Creating CA: /root/.docker/machine/certs/ca.pem
Creating client certificate: /root/.docker/machine/certs/cert.pem
Running pre-create checks...
Error with pre-create check: "VBoxManage not found. Make sure VirtualBox is installed and VBoxManage is in the path"

创建失败,缺少Virtualbox,下载安装:

1
2
3
4
5
6
7
8
9
10
[root@VM_0_3_centos ~]# yum search VirtualBox
......
VirtualBox-4.3.x86_64 : Oracle VM VirtualBox
VirtualBox-5.0.x86_64 : Oracle VM VirtualBox
VirtualBox-5.1.x86_64 : Oracle VM VirtualBox
VirtualBox-5.2.x86_64 : Oracle VM VirtualBox
VirtualBox-6.0.x86_64 : Oracle VM VirtualBox

Name and summary matches only, use "search all" for everything.
[root@VM_0_3_centos ~]# yum install -y VirtualBox-6.0

如果搜索不到,则按照如下配置:

1
2
3
4
5
6
7
8
9
[root@VM_0_3_centos ~]# vim  /etc/yum.repos.d/virtualbox.repo
#增加如下内容:
[virtualbox]
name=Oracle Linux / RHEL / CentOS-$releasever / $basearch - VirtualBox
baseurl=http://download.virtualbox.org/virtualbox/rpm/el/$releasever/$basearch
enabled=1
gpgcheck=0
repo_gpgcheck=0
gpgkey=https://www.virtualbox.org/download/oracle_vbox.asc

可以在创建时加上如下参数,来配置主机或者主机上的 Docker。

1
2
3
4
5
--engine-opt dns=114.114.114.114 配置 Docker 的默认 DNS
--engine-registry-mirror https://dockerhub.azk8s.cn 配置 Docker 的仓库镜像
--virtualbox-memory 2048 配置主机内存
--virtualbox-cpu-count 2 配置主机 CPU
更多参数请使用 docker-machine create --driver virtualbox --help 命令查看。

** macOS xhyve 驱动 **

xhyve 是 macOS 上轻量化的虚拟引擎,使用其创建的 Docker Machine 较 VirtualBox 驱动创建的运行效率要高。

xhyve 驱动 GitHub: https://github.com/zchee/docker-machine-driver-xhyve

1
2
3
4
5
6
7
8
9
10
11
$ brew install docker-machine-driver-xhyve

$ docker-machine create \
-d xhyve \
# --xhyve-boot2docker-url ~/.docker/machine/cache/boot2docker.iso \
--engine-opt dns=114.114.114.114 \
--engine-registry-mirror https://dockerhub.azk8s.cn \
--xhyve-memory-size 2048 \
--xhyve-rawdisk \
--xhyve-cpu-count 2 \
xhyve

非首次创建时建议加上 –xhyve-boot2docker-url ~/.docker/machine/cache/boot2docker.iso 参数,避免每次创建时都从 GitHub 下载 ISO 镜像。

** Windows 10 驱动 **

Windows 10 安装 Docker Desktop for Windows 之后不能再安装 VirtualBox,只能选择使用 hyperv 驱动。

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
事先在 Hyper-V 管理器中新建一个 外部虚拟交换机 执行下面的命令时,使用 --hyperv-virtual-switch=MY_SWITCH 指定虚拟交换机名称,其实也可以直接使用内部交换器。

C:\WINDOWS\system32>docker-machine create --driver hyperv --hyperv-virtual-switch=node-switch node-01
Running pre-create checks...
Creating machine...
(node-01) Copying C:\Users\hua\.docker\machine\cache\boot2docker.iso to C:\Users\hua\.docker\machine\machines\node-01\boot2docker.iso...
(node-01) Creating SSH key...
(node-01) Creating VM...
(node-01) Using switch "node-switch"
(node-01) Creating VHD
(node-01) Starting VM...
(node-01) Waiting for host to start...
Waiting for machine to be running, this may take a few minutes...
Detecting operating system of created instance...
Waiting for SSH to be available...
Detecting the provisioner...
Provisioning with boot2docker...
Copying certs to the local machine directory...
Copying certs to the remote machine...
Setting Docker configuration on the remote daemon...
Checking connection to Docker...
Docker is up and running!
To see how to connect your Docker Client to the Docker Engine running on this virtual machine, run: docker-machine env node-01
C:\WINDOWS\system32> docker-machine create --driver hyperv --hyperv-virtual-switch=node-switch node-02


默认的情况下回去下载ios文件,我们可以先把这个文件下载好了放到对应的目录中。
Copying C:\Users\hua\.docker\machine\cache\boot2docker.iso to C:\Users\hua\.docker\machine\machines\node-01\boot2docker.iso

更多参数请使用 docker-machine create --driver hyperv --help 命令查看。

查看主机

1
2
3
$ docker-machine ls

NAME ACTIVE DRIVER STATE URL SWARM DOCKER ERRORS

test - virtualbox Running tcp://192.168.99.187:2376 v17.10.0-ce

创建主机成功后,可以通过 env 命令来让后续操作对象都是目标主机。

$ docker-machine env node-01

1
2
3
4
5
6
7
8
9
10
11
12
#配置环境变量,方便后面直接操作主机
[root@centos7 ~]# docker-machine env default
export DOCKER_TLS_VERIFY='1'
export DOCKER_HOST='tcp://192.168.99.100:2376'
export DOCKER_CERT_PATH='/root/.docker/machine/machines/default'
export DOCKER_MACHINE_NAME='default'

# Run this command to configure your shell:
# eval $(docker-machine env default)
[root@centos7 ~]# eval $(docker-machine env default)
#连接虚拟主机
[root@centos7 ~]# docker-machine ssh default

后续根据提示在命令行输入命令之后就可以操作 node-01 主机。也可以通过 SSH 登录到主机。

$ docker-machine ssh node-01

docker@node-01:~$ docker –version

Docker version 17.10.0-ce, build f4ffd25

连接到主机之后你就可以在其上使用 Docker 了。

1
2
1、配置免密登录
#ssh-keygen -t rsa

http://www.360doc.com/content/18/0711/10/25533110_769502567.shtml

官方支持驱动

通过 -d 选项可以选择支持的驱动类型。

** 操作命令 **

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
docker-machine active
显示当前的活动主机

docker-machine config
显示连接主机的配置

docker-machine create
创建一个主机

docker-machine env
设置当前的环境与哪个主机通信

docker-machine inspect
查看主机的详细信息

docker-machine ip
查看主机的IP

docker-machine kill
强制关闭一个主机

docker-machine ls
查看所有的主机信息

docker-machine provision
重新配置现在主机

docker-machine regenerate-certs
为主机重新生成证书

docker-machine restart
重启主机

docker-machine rm
删除主机

docker-machine ssh
以SSH的方式连接到主机上

docker-machine scp
远程复制

docker-machine status
查看主机的状态

docker-machine stop
停止一个正在运行的主机

docker-machine upgrade
升级主机的docker服务到最新版本

docker-machine version
查看docker-machine版本

每个命令,又带有不同的参数,可以通过

$ docker-machine COMMAND –help