李明
|
1. 什么是DockerMachine? Docker Machine是一个工具,它可以帮你在虚拟主机安装docker,并且通过docker-machine 相关命令控制主机。你可以用docker machine在mac、windows、单位的网络、数据中心、云提供商(AWS或Digital Ocean)创建docker主机。 通过docker-machinecommands,你能启动、进入、停止、重启主机,也可以升级docker,还可以配置docker client。 2. 为什么要用Docker Machine? Docker Machine是当前docker运行在mac或者windows上的唯一方式,并且操作多种不同linux 系统的docker主机的最佳方式。
3.Docker machine 之安装 下载docker-machine 二进制文件
1)Mac Or linux curl -Lhttps://github.com/docker/machine/releases/download/v0.8.0/docker-machine-`uname\ -s`-`uname -m` > /usr/local/bin/docker-machine \ && chmod +x/usr/local/bin/docker-machine
2) Windows with git bash if [[ ! -d"$HOME/bin" ]]; then mkdir -p "$HOME/bin"; fi && \curl -Lhttps://github.com/docker/machine/releases/download/v0.7.0/docker-machine-Windows-x86_64.exe\ "$HOME/bin/docker-machine.exe" && \ chmod +x"$HOME/bin/docker-machine.exe”
黑魔法(离线安装): 下载地址:https://github.com/docker/machine/releases/ 老铁,我没使用在线安装,真心太慢了,我换了手机的4G流量还是迟迟下载不下来,为了下载他我还开通了迅雷会员了用了10年了都没开通这个会员花了我30,日。
使用离线安装,启动迅雷下载 直接在csdn下载把 https://download.csdn.net/download/zhugeaming2018/10404327
4.Docker machine 之使用(macor windows) 使用准备: 安装最新版的virtualbox(https://www.virtualbox.org/wiki/Downloads) cd /etc/yum.repos.d wget http://download.virtualbox.org/virtualbox/rpm/rhel/virtualbox.repo yum install -y VirtualBox-5.2
1 Create a machine docker-machine create --driver virtualbox default
在上面你会发现这么句话“errorin driver during machine creation:This computer doesn’t have VT-X/AMD-v enabled.Enabling it in the BIOS is mandatory”意思就是说你的虚拟机没有打开
有朋友说创建虚拟主机太慢,我提供一个阿里云加速命令很快很暴力docker-machine create --driver virtualbox --engine-registry-mirror https://xu176fzy.mirror.aliyuncs.com default
2 Get the environmentcommands for your new VM docker-machine env default 3 List available machinesagain to see your newly minted machine docker-machine ls 4 Connect your shedocker-machinessh defaultll to the new machine docker-machine ssh default
5 Start and stop machines docker-machine stop default docker-machine start default 5.Docker machine 之使用(Iaas) 驱动支持:
个人主页:idig8.com 往期docker学习:
|
2018-07-31 01:13:38