-
Notifications
You must be signed in to change notification settings - Fork 134
/
Vagrantfile
37 lines (30 loc) · 1.3 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
28
29
30
31
32
33
34
35
36
Vagrant.configure(2) do |config|
# main & default: normal OS series...
config.vm.define "main", primary: true do |node|
node.vm.box = "ubuntu/trusty64"
#node.vm.box = "ubuntu/precise64"
#node.vm.box = "debian/jessie64"
#node.vm.box = "debian/wheezy64"
#node.vm.box = "bento/centos-7.2"
#node.vm.box = "bento/centos-6.7"
node.vm.provision "ansible" do |ansible|
ansible.playbook = "test.yml"
#ansible.playbook = "prefetch.yml"
ansible.sudo = true
#ansible.verbose = "vvv"
end
end
# docker: for auto build & testing (e.g., Travis CI)
config.vm.define "docker" do |node|
node.vm.box = "williamyeh/ubuntu-trusty64-docker"
node.vm.provision "shell", inline: <<-SHELL
cd /vagrant
docker build -f test/Dockerfile-ubuntu14.04 -t java_trusty .
docker build -f test/Dockerfile-ubuntu12.04 -t java_precise .
docker build -f test/Dockerfile-debian8 -t java_jessie .
docker build -f test/Dockerfile-debian7 -t java_wheezy .
docker build -f test/Dockerfile-centos7 -t java_centos7 .
docker build -f test/Dockerfile-centos6 -t java_centos6 .
SHELL
end
end