本文介绍了docker-machine是否只能在Windows上挂载/ c / Users?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

但是我想挂载/ d,因为我喜欢把我的项目放在/ d上。

But I want to mount /d because I like to put my projects on /d.

推荐答案

使用boot2docker.iso VM映像,基于

docker-machine uses a boot2docker.iso VM image, based on TinyCore

,您可以在运行时挂载其他文件夹:

The original boot2docker project mentioned that you can mount other folders with, at runtime:

mount -t vboxsf -o uid=1000,gid=50 your-other-share-name /some/mount/location

表明,似乎有效。

这篇关于docker-machine是否只能在Windows上挂载/ c / Users?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-07 04:00