diff --git a/Vagrantfile b/Vagrantfile index ad257f5..28e2b46 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -2,10 +2,11 @@ # vi: set ft=ruby : Vagrant.configure("2") do |config| - config.vm.box = "ubuntu/xenial64" + config.vm.box = "ubuntu/artful64" config.vm.provider "virtualbox" do |vb| - vb.memory = "1024" + vb.memory = "4096" + vb.cpus = 4 end config.vm.provision "shell", inline: <<-SHELL @@ -20,5 +21,6 @@ Vagrant.configure("2") do |config| pip3 install docker-compose systemctl daemon-reload systemctl restart docker + apt install -y qemu SHELL end