Parallels / docker-machine-parallels

Parallels driver for Docker Machine https://github.com/docker/machine
MIT License
471 stars 35 forks source link

Mount /Users afrer creation with --parallels-no-share #54

Closed dkrotx closed 8 years ago

dkrotx commented 8 years ago

Hi!

I created VM using docker-machine create ... --parallels-no-share. I thought I won't use /Users inside. But then I realized what I need this.

And it seems to be impossible to enable it back via Desktop Control Center: Options/Sharing/Custom Folders /Users has no effect.

legal90 commented 8 years ago

In this case, you should mount the shared folder manually (in the VM):

sudo mkdir /Users
sudo mount -t prl_fs Users /Users

parallels.go#L558-L569

dkrotx commented 8 years ago

Thanks, works great for me!