From 83dcf7aa60f27c524289cc65256413a513ba4251 Mon Sep 17 00:00:00 2001 From: Khue Doan Date: Sat, 25 Dec 2021 22:28:09 +0700 Subject: [PATCH] chore: increase dev VM disk size --- metal/Vagrantfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/metal/Vagrantfile b/metal/Vagrantfile index a318e2bb..f534cc4a 100644 --- a/metal/Vagrantfile +++ b/metal/Vagrantfile @@ -13,7 +13,7 @@ Vagrant.configure("2") do |config| config.vm.define "dev#{i}" do |dev| dev.vm.network "public_network", ip: "#{ip_prefix}#{200+i+1}" dev.vm.hostname = "dev#{i}" - dev.vm.disk :disk, size: "128GB", primary: true + dev.vm.disk :disk, size: "256GB", primary: true end end