I would like to increase the RAM to at least 1 GB and I would like to configure “Host-Only” networking to use \"199.188.44.20\".
This is my Vagrantfile:
Vagrantfile
To increase the memory or CPU count when using Vagrant 2, add this to your Vagrantfile
Vagrant.configure("2") do |config| # usual vagrant config here config.vm.provider "virtualbox" do |v| v.memory = 1024 v.cpus = 2 end end