mirror of
https://github.com/datafolklabs/cement.git
synced 2026-02-06 11:37:06 +00:00
14 lines
441 B
Ruby
14 lines
441 B
Ruby
Vagrant.configure("2") do |config|
|
|
config.vm.define "ubuntu", primary: true do |this|
|
|
this.vm.box = "ubuntu"
|
|
this.vm.hostname = "ubuntu"
|
|
this.vm.box_url = "https://cloud-images.ubuntu.com/vagrant/trusty/current/trusty-server-cloudimg-amd64-vagrant-disk1.box"
|
|
this.vm.provision "shell", inline: "/vagrant/scripts/vagrant/up.sh"
|
|
end
|
|
|
|
config.vm.provider "virtualbox" do |vb|
|
|
vb.memory = 1024
|
|
vb.cpus = 2
|
|
end
|
|
end
|