From ac79dfa85293d90559a02652147e3f48384ce98d Mon Sep 17 00:00:00 2001 From: takeshix Date: Thu, 19 Apr 2018 22:45:07 +0200 Subject: [PATCH] Changed Vagrantfile settings Adjusted the vagrant settings to try to improve the building performance: * Moved from ubuntu/xenial64 to ubuntu/artful64 * 4096M memory * 4 CPUs --- Vagrantfile | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) 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