我在 Windows 7 上使用 VirtualBox 5.0.6 安装了 Docker 工具箱 1.8.3。
在 Docker Quickstart Terminal 启动过程中创建的默认虚拟机有一个为 c:\Users
定义的共享文件夹。是否可以将其他共享文件夹持久添加到此虚拟机,例如在主机上安装 d:\
驱动器?
最佳答案
c/Users share at /c/Users
/c/Users share at /c/Users
c:/Users share at /c/Users
$ mount -t vboxsf -o uid=1000,gid=50 your-other-share-name /some/mount/location
你可以在 VirtualBox / Guest Additions / Shared folders 看到更多VBoxManage sharedfolder add "boot2docker-vm" --name "sharename" --hostpath "C:\test"
关于Docker 工具箱 : Is there a way to mount other folders than from "C:\Users" Windows?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/33245036/