61

According to source code - it's not, but what if I'm wrong?

So the final question: is it possible to run a vagrant VM (virtualbox-driven) without /vagrant synced folder?

zerkms
  • 1,078

1 Answers1

106

Yes. In the Vagrantfile:

Vagrant.configure('2') do |config|
  config.vm.synced_folder '.', '/vagrant', disabled: true
  # ...
end
tmatilai
  • 2,282
  • 1
  • 19
  • 13