lee-pai-long
4/29/2016 - 4:04 PM

dont-share-working-directory_vagrant.md

[VAGRANT] don't share working directory

When working with multiple VM vagrant project, it may be useful to not share the working directory but a subdirectory for each machine, to prevent vagrant from sharing the top project working directory add the following to the Vagrantfile :

Vagrant.configure('2') do |config|
  config.vm.synced_folder '.', '/vagrant', disabled: true
  # ...
end