Box switched to hashicorp/bionic64 and supported providers adjusted

This commit is contained in:
Ricardo Aielo 2019-09-22 13:07:46 -03:00
parent ae3ae5078f
commit 365111f3bb
1 changed files with 2 additions and 2 deletions

4
Vagrantfile vendored
View File

@ -4,11 +4,11 @@
# Ruby, run unit tests, etc.
Vagrant.configure("2") do |config|
config.vm.box = "ubuntu/bionic64"
config.vm.box = "hashicorp/bionic64"
config.vm.hostname = "vagrant"
config.ssh.shell = "bash -c 'BASH_ENV=/etc/profile exec bash'"
["vmware_fusion", "vmware_workstation", "virtualbox"].each do |provider|
["vmware_desktop", "virtualbox", "hyperv"].each do |provider|
config.vm.provider provider do |v, override|
v.memory = "2048"
end