I can't use virtualbox with vagrant because it has a conflict with my kvm setup. So I started looking at starting it using lxc. It's lightweight, which makes it perfect for my already busy machine.
Adding this to the Vagrantfile I could start and run it successfully:
config.vm.provider :lxc do |libvirt, override|
override.vm.box = "fgrehm/precise64-lxc"
end
It's probably missing the memory and cpu limits, but I don't know how to do that in vagrant for the lxc provider.
I can't use virtualbox with vagrant because it has a conflict with my kvm setup. So I started looking at starting it using lxc. It's lightweight, which makes it perfect for my already busy machine.
Adding this to the Vagrantfile I could start and run it successfully:
It's probably missing the memory and cpu limits, but I don't know how to do that in vagrant for the lxc provider.