vagrant-lxc-ng/Vagrantfile.dev

17 lines
477 B
Plaintext
Raw Normal View History

2013-02-25 04:58:04 +00:00
# -*- mode: ruby -*-
# vi: set ft=ruby :
Vagrant::Config.run do |config|
config.vm.box = "quantal64"
config.vm.box_url = "https://github.com/downloads/roderik/VagrantQuantal64Box/quantal64.box"
config.vm.network :hostonly, "192.168.33.10"
config.vm.customize [
"modifyvm", :id,
"--memory", 1024,
"--cpus", "2"
]
config.vm.share_folder("v-root", "/vagrant", ".", :nfs => true)
end