Docker工具箱:有没有办法安装除“C:\ Users”Windows之外的其他文件夹?

时间:2015-10-20 19:15:31

标签: docker boot2docker docker-toolbox

我在Windows 7上使用VirtualBox 5.0.6安装了Docker工具箱1.8.3。

Docker Quickstart终端启动期间创建的默认虚拟机有一个为c:\Users定义的共享文件夹。是否可以将其他共享文件夹持久添加到此虚拟机,例如在主机上安装d:\个驱动器?

1 个答案:

答案 0 :(得分:9)

boot2docker README mentions

  

或者,Boot2Docker包含内置的VirtualBox Guest Additions,用于明确使用VirtualBox文件夹共享。

     

以下存在的第一个共享名称(如果有)将自动挂载在指定的位置:

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创建共享文件夹,如下所示:

VBoxManage sharedfolder add "boot2docker-vm" --name "sharename" --hostpath "C:\test"