mirror of
https://github.com/danbulant/api_docs
synced 2026-06-19 14:21:31 +00:00
Increase memory of Vagrant, fixes #601 hopefully
This commit is contained in:
parent
b742b60413
commit
55cbe85ca8
1 changed files with 4 additions and 1 deletions
3
Vagrantfile
vendored
3
Vagrantfile
vendored
|
|
@ -1,6 +1,9 @@
|
||||||
Vagrant.configure(2) do |config|
|
Vagrant.configure(2) do |config|
|
||||||
config.vm.box = "ubuntu/trusty64"
|
config.vm.box = "ubuntu/trusty64"
|
||||||
config.vm.network :forwarded_port, guest: 4567, host: 4567
|
config.vm.network :forwarded_port, guest: 4567, host: 4567
|
||||||
|
config.vm.provider "virtualbox" do |vb|
|
||||||
|
vb.memory = "2048"
|
||||||
|
end
|
||||||
|
|
||||||
config.vm.provision "bootstrap",
|
config.vm.provision "bootstrap",
|
||||||
type: "shell",
|
type: "shell",
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue