-
Notifications
You must be signed in to change notification settings - Fork 8
/
Vagrantfile
27 lines (24 loc) · 1.03 KB
/
Vagrantfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
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.define "ubuntu-14.04", autostart: false do |this|
this.vm.box = "ubuntu-14.04"
this.vm.hostname = "ubuntu-14.04"
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.define "windows-server-2012-r2", autostart: false do |this|
this.vm.box = "opentable/win-2012r2-standard-amd64-nocm"
this.vm.hostname = "windows-server-2012-r2"
this.vm.box_url = "opentable/win-2012r2-standard-amd64-nocm"
end
config.vm.provider "virtualbox" do |vb|
vb.memory = 2048
vb.cpus = 2
vb.gui = true
end
end