diff options
Diffstat (limited to 'Vagrantfile')
-rw-r--r-- | Vagrantfile | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/Vagrantfile b/Vagrantfile new file mode 100644 index 0000000..b198622 --- /dev/null +++ b/Vagrantfile | |||
@@ -0,0 +1,11 @@ | |||
1 | Vagrant.configure(2) do |config| | ||
2 | config.vm.box = "williamyeh/ubuntu-trusty64-docker" | ||
3 | |||
4 | config.vm.provision "shell", inline: <<-SHELL | ||
5 | cd /vagrant | ||
6 | |||
7 | docker build -t ansible:ubuntu14.04 ubuntu14.04 | ||
8 | docker build -t ansible:ubuntu12.04 ubuntu12.04 | ||
9 | docker build -t ansible:debian7 debian7 | ||
10 | SHELL | ||
11 | end | ||