-
Notifications
You must be signed in to change notification settings - Fork 110
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add 9p support for mounting /home #2
Comments
Any thoughts on this? Would love this for minikube/minishift. |
Haven't had the bandwidth to investigate it. Long long ago I played with KVM+9p on a different project and found it was too flaky for what I was trying to do (nested builds within a VM) so I abandoned it. Perhaps things are more stable/reliable now... I'm not sure. |
As a workaround, I added a "sshfs"* command: docker/machine#4018 As far as I know* , 9p is deprecated and vsock is emerging... |
The current Boot2Docker image still has 9p support, though. https://github.com/boot2docker/boot2docker/blob/master/kernel_config
Then again it still uses AUFS as the storage driver, as well... https://github.com/boot2docker/boot2docker/blob/master/Dockerfile
But maybe 9p is still a reasonable option, until And it looks like there are SELinux things left to sort out, as well... |
Using 9p does work OK, but the current boot2docker ISO doesn't mount /hosthome under KVM. https://github.com/docker/machine/blob/master/drivers/virtualbox/virtualbox_linux.go#L40 https://github.com/docker/machine/blob/master/drivers/virtualbox/virtualbox.go#L445 So it will only mount To make this work, there are changes needed both for machine (in driver) and for boot2docker. https://wiki.qemu.org/Documentation/9psetup
But whole design, with hardcoding /Users /C/Users /home, seems to be a bit flawed anyway ? |
No description provided.
The text was updated successfully, but these errors were encountered: