From 57666b661b095d00795e3b2044cfb2e3d2f8ea66 Mon Sep 17 00:00:00 2001 From: Jag Date: Sun, 24 Feb 2019 16:55:18 +0000 Subject: [PATCH] vagrant: Use virtualbox linked clones / CoW to reduce startup times Behaves more like docker now with Copy on Write. More documentation: - https://www.vagrantup.com/docs/virtualbox/configuration.html#linked-clones (https://archive.fo/Yy6A4) - https://www.virtualbox.org/manual/ch01.html (https://archive.fo/1rj4q) Closes #1551 Reviewed-by: Sunil Mohan Adapa --- Vagrantfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Vagrantfile b/Vagrantfile index a51c07a30..ab8314f7d 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -22,6 +22,7 @@ Vagrant.configure(2) do |config| config.vm.provider "virtualbox" do |vb| vb.cpus = 2 vb.memory = 2048 + vb.linked_clone = true end config.vm.provision "shell", inline: <<-SHELL cd /vagrant/