aboutsummaryrefslogtreecommitdiffhomepage
path: root/Vagrantfile
blob: 1f16b40befa9142619ebfb0c43eeffd809e647fb (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
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:debian8      debian8
    docker build  -t ansible:debian7      debian7
    #docker build  -t ansible:centos7      centos7
    docker build  -t ansible:centos6      centos6

    docker build  -t ansible:ubuntu14.04-onbuild  ubuntu14.04-onbuild
    docker build  -t ansible:ubuntu12.04-onbuild  ubuntu12.04-onbuild
    docker build  -t ansible:debian8-onbuild      debian8-onbuild
    docker build  -t ansible:debian7-onbuild      debian7-onbuild
    #docker build  -t ansible:centos7-onbuild      centos7-onbuild
    docker build  -t ansible:centos6-onbuild      centos6-onbuild

  SHELL
end