该博客准确地讨论了如何在Windows上将Docker与VMWare Workstation结合使用。您甚至可以使用Windows 7。
https://stefanscherer.github.io/yes-you-can-docker-on-windows-7/
首先为Windows安装Chocolatey软件包管理器(这是一个单行命令)
@"%SystemRoot%\System32\WindowsPowerShell\v1.0\powershell.exe" -NoProfile -ExecutionPolicy Bypass -Command "iex ((New-Object System.Net.WebClient).DownloadString('https://chocolatey.org/install.ps1'))" && SET "PATH=%PATH%;%ALLUSERSPROFILE%\chocolatey\bin"
然后安装Docker以使用VMWare工作站
choco install -y docker
choco install -y docker-machine
choco install -y docker-machine-vmwareworkstation
创建一个默认的虚拟机
docker-machine --native-ssh create -d vmwareworkstation default
设置环境变量
docker-machine env | iex
现在您已经准备好开始。