diff --git a/Vagrantfile b/Vagrantfile index d7e40a6da6..dfa4da4d8b 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -26,16 +26,13 @@ Vagrant.configure(2) do |config| # Create a private network, which allows host-only access to the machine # using a specific IP. - # config.vm.network "private_network", ip: "192.168.33.10" + config.vm.network "private_network", ip: "192.168.33.10" # Create a public network, which generally matched to bridged network. # Bridged networks make the machine appear as another physical device on # your network. # config.vm.network "public_network" - # Virtualbox requires a private network to use NFS - config.vm.network "private_network", type: "dhcp" - # Share an additional folder to the guest VM. The first argument is # the path on the host to the actual folder. The second argument is # the path on the guest to mount the folder. And the optional third