我刚刚安装了Docker工具箱1.9.1(只有docker本身加上Kitematic,因为我已经安装了VirtualBox和Git for Windows)。单击 Docker快速入门终端图标不起作用,因此我必须按照建议将其与C:\Program Files (x86)\Git\bin\bash.exe
关联。现在它开始正常,但我无法运行docker
命令:
Kitematic工作得很好,但我需要shell。我该如何解决?
答案 0 :(得分:8)
检查docker-machine.exe
的安装位置(或copy the latest released one in your %PATH%
)并使用它,而不是快速入门。
从常规CMD会议:
# find the name of the machine created.
docker-machine ls
docker-machine env --shell cmd <nameOfTheMachine>
docker-machine ssh <nameOfTheMachine>
您所使用的shell是由VirtualBox管理的Linux TinyCore boot2docker.iso
映像提供的shell,而不是Windows主机上安装的git-bash
。
答案 1 :(得分:3)