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" +~~~