1 Docker-Ansible base images
4 [![Circle CI](https://circleci.com/gh/William-Yeh/docker-ansible.svg?style=shield)](https://circleci.com/gh/William-Yeh/docker-ansible) [![Build Status](https://travis-ci.org/William-Yeh/docker-ansible.svg?branch=master)](https://travis-ci.org/William-Yeh/docker-ansible)
9 Repository name in Docker Hub: **[williamyeh/ansible](https://registry.hub.docker.com/u/williamyeh/ansible/)**
11 This repository contains Dockerized [Ansible](https://github.com/ansible/ansible), published to the public [Docker Hub](https://registry.hub.docker.com/) via **automated build** mechanism.
17 These are Docker images for [Ansible](https://github.com/ansible/ansible) software, installed in a selected Linux distributions.
19 - OS: Debian (jessie, wheezy), Ubuntu (trusty, precise), CentOS (7, 6)
21 - Ansible: usually the latest version.
28 - `williamyeh/ansible:debian8`
29 - `williamyeh/ansible:debian7`
30 - `williamyeh/ansible:ubuntu14.04`
31 - `williamyeh/ansible:ubuntu12.04`
32 - `williamyeh/ansible:centos7`
33 - `williamyeh/ansible:centos6`
37 - `williamyeh/ansible:debian8-onbuild`
38 - `williamyeh/ansible:debian7-onbuild`
39 - `williamyeh/ansible:ubuntu14.04-onbuild`
40 - `williamyeh/ansible:ubuntu12.04-onbuild`
41 - `williamyeh/ansible:centos7-onbuild`
42 - `williamyeh/ansible:centos6-onbuild`
47 Here comes a simplest working example for the impatient.
49 First, choose a base image you'd like to begin with. For example, `williamyeh/ansible:ubuntu14.04-onbuild`.
51 Second, put the following `Dockerfile` along with your playbook directory:
54 FROM williamyeh/ansible:ubuntu14.04-onbuild
56 # ==> Specify playbook filename; default = "playbook.yml"
57 #ENV PLAYBOOK playbook.yml
59 # ==> Specify inventory filename; default = "/etc/ansible/hosts"
60 #ENV INVENTORY inventory.ini
62 # ==> Executing Ansible...
63 RUN ansible-playbook-wrapper
66 Third, `docker build .`
70 For more advanced usage, the role in Ansible Galaxy [`williamyeh/nginx`](https://galaxy.ansible.com/list#/roles/2245) also demonstrates how to do a simple integration test for a variety of Linux distributions on [Travis CI](https://travis-ci.org/)’s Ubuntu 12.04 worker instances.
75 ## Why yet another Ansible image for Docker?
77 There has been quite a few Ansible images for Docker (e.g., [search](https://registry.hub.docker.com/search?q=ansible) in the Docker Hub), so why reinvent the wheel?
79 In the beginning I used the [`ansible/ansible-docker-base`](https://github.com/ansible/ansible-docker-base) created by Ansible Inc. It worked well, but left some room for improvement:
81 - *Base OS image* - It provides only `centos:centos7` and `ubuntu:14.04`. Insufficent for me.
83 - *Unnecessary dependencies* - It installed, at the very beginning of its Dockerfile, the `software-properties-common` package, which in turns installed some Python packages. I prefered to incorporate these stuff only when absolutely needed.
85 Therefore, I built these Docker images on my own.
88 ### Comparison: image size
91 REPOSITORY TAG VIRTUAL SIZE
92 --------------------------- ------------------- ------------
93 ansible/centos7-ansible stable 367.5 MB
94 ansible/ubuntu14.04-ansible stable 286.6 MB
96 williamyeh/ansible centos6-onbuild 264.2 MB
97 williamyeh/ansible centos7-onbuild 275.3 MB
98 williamyeh/ansible debian7-onbuild 134.4 MB
99 williamyeh/ansible debian8-onbuild 178.3 MB
100 williamyeh/ansible ubuntu12.04-onbuild 181.9 MB
101 williamyeh/ansible ubuntu14.04-onbuild 238.3 MB
107 Used mostly as a *base image* for configuring, with Ansible, other software stack on some specified Linux distribution.
109 Take Debian/Ubuntu/CentOS for example. To test an Ansible `playbook.yml` against a variety of Linux distributions, we may use [Vagrant](https://www.vagrantup.com/) as follows:
114 Vagrant.configure(2) do |config|
116 # ==> Choose a Vagrant box to emulate Linux distribution...
117 config.vm.box = "ubuntu/trusty64"
118 #config.vm.box = "hashicorp/precise64"
119 #config.vm.box = "chef/debian-7.8"
120 #config.vm.box = "chef/centos-7.0"
121 #config.vm.box = "chef/centos-6.6"
124 # ==> Executing Ansible...
125 config.vm.provision "ansible" do |ansible|
126 ansible.playbook = "playbook.yml"
132 Virtual machines can emulate a variety of Linux distributions with good quality, at the cost of runtime overhead.
135 Docker to be a rescue. Now, with these **williamyeh/ansible** series, we may test an Ansible `playbook.yml` against a variety of Linux distributions as follows:
141 # ==> Choose a base image to emulate Linux distribution...
142 FROM williamyeh/ansible:ubuntu14.04
143 #FROM williamyeh/ansible:ubuntu12.04
144 #FROM williamyeh/ansible:debian8
145 #FROM williamyeh/ansible:debian7
146 #FROM williamyeh/ansible:centos7
147 #FROM williamyeh/ansible:centos6
150 # ==> Copying Ansible playbook...
154 # ==> Creating inventory file...
155 RUN echo localhost > inventory
157 # ==> Executing Ansible...
158 RUN ansible-playbook -i inventory playbook.yml \
159 --connection=local --sudo
162 Or, more simple with `onbuild` series:
167 # ==> Choose a base image to emulate Linux distribution...
168 FROM williamyeh/ansible:ubuntu14.04-onbuild
169 #FROM williamyeh/ansible:ubuntu12.04-onbuild
170 #FROM williamyeh/ansible:debian8-onbuild
171 #FROM williamyeh/ansible:debian7-onbuild
172 #FROM williamyeh/ansible:centos7-onbuild
173 #FROM williamyeh/ansible:centos6-onbuild
176 # ==> Specify playbook filename; default = "playbook.yml"
177 #ENV PLAYBOOK playbook.yml
179 # ==> Specify inventory filename; default = "/etc/ansible/hosts"
180 #ENV INVENTORY inventory.ini
182 # ==> Executing Ansible...
183 RUN ansible-playbook-wrapper
188 With Docker, we can test any Ansible playbook against any version of any Linux distribution without the help of Vagrant. More lightweight, and more portable across IaaS, PaaS, and even CaaS (Container as a Service) providers!
190 If better OS emulation (virtualization) isn't required, the Docker approach (containerization) should give you a more efficient Ansible experience.
196 Author: William Yeh <william.pjyeh@gmail.com>
198 Licensed under the Apache License V2.0. See the [LICENSE file](LICENSE) for details.