Skip to content

Instantly share code, notes, and snippets.

@janhocevar
Created April 23, 2014 20:36
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save janhocevar/11231500 to your computer and use it in GitHub Desktop.
Save janhocevar/11231500 to your computer and use it in GitHub Desktop.
# -*- mode: ruby -*-
# vi: set ft=ruby :
Vagrant.configure("2") do |config|
config.vm.box = "noblemacmillan"
config.vm.hostname = "noblemacmillan.lan"
config.vm.box_url = "http://vagrant.dlabs.lan/magento.box"
config.vm.network :private_network, ip: "10.10.0.15"
config.ssh.username = "dlabs"
config.ssh.forward_agent = true
config.vm.provider :virtualbox do |vb|
vb.gui = false
vb.customize ["modifyvm", :id, "--memory", "2048"]
vb.customize ["modifyvm", :id, "--cpus", "2"]
vb.customize ["modifyvm", :id, "--cpuexecutioncap", "100"]
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment