Configure precise box to use 1.5gb ram and 2 cpus
This commit is contained in:
parent
c0121f5953
commit
60841387c5
1 changed files with 9 additions and 0 deletions
9
development/Vagrantfile
vendored
9
development/Vagrantfile
vendored
|
@ -55,6 +55,15 @@ Vagrant.configure("2") do |config|
|
||||||
precise.vm.box = 'precise64'
|
precise.vm.box = 'precise64'
|
||||||
precise.vm.hostname = 'vbox'
|
precise.vm.hostname = 'vbox'
|
||||||
precise.vm.box_url = 'http://files.vagrantup.com/precise64.box'
|
precise.vm.box_url = 'http://files.vagrantup.com/precise64.box'
|
||||||
|
|
||||||
|
precise.vm.provider :virtualbox do |vb|
|
||||||
|
# Configure VM to use 1.5gb of ram and 2 cpus
|
||||||
|
vb.customize [
|
||||||
|
"modifyvm", :id,
|
||||||
|
"--memory", '1536',
|
||||||
|
"--cpus", '2'
|
||||||
|
]
|
||||||
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
config.vm.define :lxc do |lxc_config|
|
config.vm.define :lxc do |lxc_config|
|
||||||
|
|
Loading…
Reference in a new issue