-
Notifications
You must be signed in to change notification settings - Fork 2k
Added option to disable virtualbox vbfs mount of users home directory #1622
Added option to disable virtualbox vbfs mount of users home directory #1622
Conversation
Thanks for the contribution! It's a minor nit but do you think we could rename this to something like It also needs a rebase. Thanks! |
No problem, I'll update. Thanks |
Nice feature here. |
@@ -300,7 +306,7 @@ func (d *Driver) Create() error { | |||
return err | |||
} | |||
|
|||
if shareDir != "" { | |||
if shareDir != "" && d.NoVboxFsShare == false { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Nit: This should probably read, if shareDir != "" && !d.NoVBoxFsShare {
Looks pretty good to me, needs a rebase. |
Updated as per requests 👍 |
LGTM |
LGTM /cc @moxiegirl |
Thanks @rawkode LGTM to me --- needs rebase and squash as Evan noticed. How to here: http://docs.docker.com/project/create-pr/#rebase-your-branch |
* Updated documentation with new option * Updated flag name Signed-off-by: David McKay <david@rawkode.com>
@moxiegirl rebased and squashed 😄 |
Added option to disable virtualbox vbfs mount of users home directory
@rawkode thank you sir. nice job there. 🌟 |
No description provided.