Skip to content

Commit bc78dec

Browse files
committed
let the VM use 1G of RAM and two cores by default
bundle install and some suites were starting to fail with less memory.
1 parent 39842e1 commit bc78dec

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

Vagrantfile

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,9 @@ Vagrant.configure('2') do |config|
77
config.vm.network :forwarded_port, guest: 3000, host: 3000
88

99
config.vm.provision :shell, path: 'bootstrap.sh', keep_color: true
10+
11+
config.vm.provider "virtualbox" do |v|
12+
v.memory = 1024
13+
v.cpus = 2
14+
end
1015
end

0 commit comments

Comments
 (0)