-
Notifications
You must be signed in to change notification settings - Fork 102
/
Copy pathVagrantfile
34 lines (25 loc) · 1.04 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
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.network "private_network", ip: "10.0.0.10"
node.vm.provision "ansible" do |ansible|
ansible.playbook = "setup.yml"
ansible.sudo = true
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 -t wordpress .
docker run -d --name wordpress wordpress
sleep 60
IP=$(docker inspect --format '{{ .NetworkSettings.IPAddress }}' wordpress) ; echo http://$IP:80/ > url
cat url | xargs -t -n 1 curl -v -o result-wordpress
echo "==> Validating the test results..."
grep '<title>ANSIBLE_TEST' result-wordpress
SHELL
end
end