mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-24 08:09:13 -05:00
Merge pull request #3446 from wlads/change-vagrantfile-memory
Change Vagrantfile to default VM 1024MB of RAM
This commit is contained in:
commit
aa5c512949
1 changed files with 1 additions and 1 deletions
2
Vagrantfile
vendored
2
Vagrantfile
vendored
|
@ -17,7 +17,7 @@ Vagrant.configure("2") do |config|
|
||||||
|
|
||||||
config.vm.provider :virtualbox do |v|
|
config.vm.provider :virtualbox do |v|
|
||||||
# This setting gives the VM 1024MB of RAM instead of the default 384.
|
# This setting gives the VM 1024MB of RAM instead of the default 384.
|
||||||
v.customize ["modifyvm", :id, "--memory", [ENV['DISCOURSE_VM_MEM'].to_i, 2048].max]
|
v.customize ["modifyvm", :id, "--memory", [ENV['DISCOURSE_VM_MEM'].to_i, 1024].max]
|
||||||
|
|
||||||
# Who has a single core cpu these days anyways?
|
# Who has a single core cpu these days anyways?
|
||||||
cpu_count = 2
|
cpu_count = 2
|
||||||
|
|
Loading…
Reference in a new issue