Why is the default Vagrant shared folder empty?
问题 The /vagrant directory is empty. It should contain the workspace where my Vagrantfile is located. I can cd /vagrant , but it's empty. Vagrantfile VAGRANTFILE_API_VERSION = '2' VAGRANT_BOX_NAME = 'nomades.local' Vagrant.configure(VAGRANTFILE_API_VERSION) do |config| config.vm.box = 'bento/centos-6.7' config.vm.box_check_update = false config.vm.hostname = VAGRANT_BOX_NAME config.vm.define VAGRANT_BOX_NAME do |dev| dev.vm.provider 'virtualbox' do |v| v.name = VAGRANT_BOX_NAME v.memory = 512 v