diff options
author | William Yeh <william.pjyeh@gmail.com> | 2015-04-28 00:01:23 +0800 |
---|---|---|
committer | William Yeh <william.pjyeh@gmail.com> | 2015-04-28 00:01:23 +0800 |
commit | d3c54163b193b378193e653c721fb43e13b0669f (patch) | |
tree | 105b464ae9a45c5594129447e20692b3d07a68c0 /Vagrantfile | |
download | docker-ansible-d3c54163b193b378193e653c721fb43e13b0669f.tar.gz docker-ansible-d3c54163b193b378193e653c721fb43e13b0669f.tar.zst docker-ansible-d3c54163b193b378193e653c721fb43e13b0669f.zip |
Initial release.
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 | ||