From 8acaabb7590e26929544c677f0abb3fec9c9c7cb Mon Sep 17 00:00:00 2001 From: Nazar Zhuk Date: Wed, 9 Dec 2015 02:18:33 -0600 Subject: [PATCH] Added a note on VirtualBox shared folder Based on discussion in issue 27. --- vagrant/README.md | 17 ++++++++++++++++- 1 file changed, 16 insertions(+), 1 deletion(-) diff --git a/vagrant/README.md b/vagrant/README.md index fea6685..4ea63b1 100644 --- a/vagrant/README.md +++ b/vagrant/README.md @@ -1,4 +1,6 @@ -Notes: +#Notes + +##Disable rsync folder In order to disable the rsync option in your Vagrantfile, you need to use this snippet: @@ -6,3 +8,16 @@ In order to disable the rsync option in your Vagrantfile, you need to use this s config.vm.synced_folder ".", "/home/vagrant/sync", disabled: true ~~~ +##Setup VirtualBox shared folder at /vagrant + +Install vagrant-vbguest + +~~~bash +$ vagrant plugin install vagrant-vbguest +~~~ + +Add this to Vagrantfile + +~~~ruby +config.vm.synced_folder ".", "/vagrant" +~~~