summaryrefslogtreecommitdiff
path: root/Vagrantfile
diff options
context:
space:
mode:
authorOla Bini <ola@olabini.se>2016-12-07 18:36:33 -0200
committerOla Bini <ola@olabini.se>2016-12-07 18:36:51 -0200
commitcef353491e5032d30f924b46dcae4e63897e189b (patch)
treed1f10c968d14885e1fef4a769f29cfb3e388b469 /Vagrantfile
parent3e9f6d5684913c6d2e996cd46f75934ac075e342 (diff)
Fix out of memory errors and problems with older node versions that stopped vagrant from working
Diffstat (limited to 'Vagrantfile')
-rw-r--r--Vagrantfile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Vagrantfile b/Vagrantfile
index ad247dc4..5d8a66d5 100644
--- a/Vagrantfile
+++ b/Vagrantfile
@@ -27,12 +27,12 @@ Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
end
config.vm.provider "libvirt" do |v, override|
- v.memory = 1024
+ v.memory = 2048
override.vm.network :forwarded_port, guest: 3333, guest_ip: '127.0.0.1', host: 3333
end
config.vm.provider "virtualbox" do |v, override|
- v.memory = 1024
+ v.memory = 2048
override.vm.network :forwarded_port, guest: 3333, host: 3333 # do NOT add host_ip in this line. It is not necessary
override.vm.network :forwarded_port, guest: 8089, host: 8089
end