From d3c54163b193b378193e653c721fb43e13b0669f Mon Sep 17 00:00:00 2001 From: William Yeh Date: Tue, 28 Apr 2015 00:01:23 +0800 Subject: Initial release. --- Vagrantfile | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 Vagrantfile (limited to 'Vagrantfile') diff --git a/Vagrantfile b/Vagrantfile new file mode 100644 index 0000000..b198622 --- /dev/null +++ b/Vagrantfile @@ -0,0 +1,11 @@ +Vagrant.configure(2) do |config| + config.vm.box = "williamyeh/ubuntu-trusty64-docker" + + config.vm.provision "shell", inline: <<-SHELL + cd /vagrant + + docker build -t ansible:ubuntu14.04 ubuntu14.04 + docker build -t ansible:ubuntu12.04 ubuntu12.04 + docker build -t ansible:debian7 debian7 + SHELL +end -- cgit v1.2.3