]> git.immae.eu Git - github/fretlink/docker-ansible.git/blame - README.md
alpine3: update base alpine image from 3.6 to 3.7
[github/fretlink/docker-ansible.git] / README.md
CommitLineData
d3c54163
WY
1Docker-Ansible base images
2===================
3
eb32e88f 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)
02c34901 5
d3c54163
WY
6
7## Summary
8
b1f3718d 9Repository name in Docker Hub: **[williamyeh/ansible](https://hub.docker.com/r/williamyeh/ansible/)**
d3c54163 10
b1f3718d 11This repository contains Dockerized [Ansible](https://github.com/ansible/ansible), published to the public [Docker Hub](https://hub.docker.com/) via **automated build** mechanism.
d3c54163
WY
12
13
14
15## Configuration
16
17These are Docker images for [Ansible](https://github.com/ansible/ansible) software, installed in a selected Linux distributions.
18
57d366d7 19### Base OS
d3c54163 20
deeab1a1 21Debian (stretch, jessie), Ubuntu (xenial, trusty), CentOS (7), Alpine (3).
57d366d7
WY
22
23Supports for Wheezy, Precise, and CentOS6 have been ended since Sep 2017.
24
25### Ansible
26
27Four versions are provided:
14e54a03 28
13375974 29 1. provides the most recent *stable* version of Ansible; suitable for most people.
7d885c87 30 2. same as stable version, but is designed for building (near-)*minimal* images out of playbooks; i.e., the Ansible body will be removed when mission completed. Refer to “[Build Docker images with Ansible: A half-blood approach](https://github.com/William-Yeh/build-docker-with-ansible)” for working examples and slides.
57d366d7
WY
31 3. provides the old 1.9 version of Ansible (but will be retired someday).
32 4. provides the *experimental* version of Ansible; i.e., the master branch of official [Ansible's git repo](https://github.com/ansible/ansible).
b1f3718d 33
b1f3718d
WY
34Each version is further divided into two variants:
35
7d885c87
WY
36- *Normal* variant: intended to be used as Ansible *control machines*, or in cases that is inadequate in the onbuild variants.
37- *Onbuild* variant: intended to be used to build Docker images.
d3c54163
WY
38
39
ebfd2bf2
WY
40## Images and tags
41
de4433f3 42### Stable version (installed from official PyPI repo):
930848e7 43
b1f3718d 44- Normal variants:
ebfd2bf2 45
deeab1a1 46 - `williamyeh/ansible:debian9`
ebfd2bf2 47 - `williamyeh/ansible:debian8`
97d48efe 48 - `williamyeh/ansible:ubuntu16.04`
ebfd2bf2 49 - `williamyeh/ansible:ubuntu14.04`
02c34901 50 - `williamyeh/ansible:centos7`
ae06b63d 51 - `williamyeh/ansible:alpine3`
ebfd2bf2 52
b1f3718d 53- Onbuild variants (*recommended for common cases*):
ebfd2bf2 54
deeab1a1 55 - `williamyeh/ansible:debian9-onbuild`
ebfd2bf2 56 - `williamyeh/ansible:debian8-onbuild`
97d48efe 57 - `williamyeh/ansible:ubuntu16.04-onbuild`
ebfd2bf2 58 - `williamyeh/ansible:ubuntu14.04-onbuild`
02c34901 59 - `williamyeh/ansible:centos7-onbuild`
ae06b63d 60 - `williamyeh/ansible:alpine3-onbuild`
ebfd2bf2 61
13375974
WY
62
63### Minimal configuration (the Ansible body will be removed when mission completed):
64
7d885c87
WY
65Refer to “[Build Docker images with Ansible: A half-blood approach](https://github.com/William-Yeh/build-docker-with-ansible)” for working examples and slides.
66
b1f3718d 67- Onbuild variants:
13375974
WY
68
69 - `williamyeh/ansible:mini-alpine3`
deeab1a1 70 - `williamyeh/ansible:mini-debian9`
13375974
WY
71 - `williamyeh/ansible:mini-debian8`
72
73
57d366d7
WY
74### Old 1.9 version (will be retired someday):
75
76Note: Ansible 1.9 was not supported in CentOS EPEL since January 2017, according to [this announcement](http://www.spinics.net/linux/fedora/epel-devel/msg00792.html).
14e54a03 77
b1f3718d 78- Normal variants:
14e54a03
WY
79
80 - `williamyeh/ansible:1.9-debian8`
14e54a03 81 - `williamyeh/ansible:1.9-ubuntu14.04`
14e54a03
WY
82 - `williamyeh/ansible:1.9-alpine3`
83
b1f3718d 84- Onbuild variants (*recommended for common cases*):
14e54a03
WY
85
86 - `williamyeh/ansible:1.9-debian8-onbuild`
14e54a03 87 - `williamyeh/ansible:1.9-ubuntu14.04-onbuild`
14e54a03
WY
88 - `williamyeh/ansible:1.9-alpine3-onbuild`
89
13375974 90
de4433f3 91### Experimental version (building directly from the git `master` source tree; use at your own risk!):
930848e7 92
b1f3718d 93- Normal variants:
930848e7 94
deeab1a1 95 - `williamyeh/ansible:master-debian9`
930848e7 96 - `williamyeh/ansible:master-debian8`
97d48efe 97 - `williamyeh/ansible:master-ubuntu16.04`
930848e7 98 - `williamyeh/ansible:master-ubuntu14.04`
930848e7 99 - `williamyeh/ansible:master-centos7`
930848e7 100
b1f3718d 101- Onbuild variants (*recommended for common cases*):
930848e7 102
deeab1a1 103 - `williamyeh/ansible:master-debian9-onbuild`
930848e7 104 - `williamyeh/ansible:master-debian8-onbuild`
97d48efe 105 - `williamyeh/ansible:master-ubuntu16.04-onbuild`
930848e7 106 - `williamyeh/ansible:master-ubuntu14.04-onbuild`
930848e7 107 - `williamyeh/ansible:master-centos7-onbuild`
930848e7
WY
108
109
d3c54163 110
c20fa492
WY
111## For the impatient
112
113Here comes a simplest working example for the impatient.
114
115First, choose a base image you'd like to begin with. For example, `williamyeh/ansible:ubuntu14.04-onbuild`.
116
117Second, put the following `Dockerfile` along with your playbook directory:
118
119```
120FROM williamyeh/ansible:ubuntu14.04-onbuild
121
8287be90
WY
122# ==> Specify requirements filename; default = "requirements.yml"
123#ENV REQUIREMENTS requirements.yml
c20fa492 124
8287be90
WY
125# ==> Specify playbook filename; default = "playbook.yml"
126#ENV PLAYBOOK playbook.yml
127
128# ==> Specify inventory filename; default = "/etc/ansible/hosts"
129#ENV INVENTORY inventory.ini
c20fa492 130
ffe10e81 131# ==> Executing Ansible (with a simple wrapper)...
c20fa492
WY
132RUN ansible-playbook-wrapper
133```
134
135Third, `docker build .`
136
137Done!
138
97d48efe 139For more advanced usage, the role in Ansible Galaxy [`williamyeh/nginx`](https://galaxy.ansible.com/williamyeh/nginx/) demonstrates how to perform a simple smoke test (*configuration needs test, too!*) on a variety of (*containerized*) Linux distributions on [CircleCI](https://circleci.com/)'s Ubuntu 12.04 and [Travis CI](https://travis-ci.org/)’s Ubuntu 14.04 worker instances.
c20fa492
WY
140
141
142
143
d3c54163
WY
144## Why yet another Ansible image for Docker?
145
b1f3718d 146There has been quite a few Ansible images for Docker (e.g., [search](https://hub.docker.com/search/?q=ansible&isAutomated=0&isOfficial=0&page=1&pullCount=1&starCount=0) in the Docker Hub), so why reinvent the wheel?
d3c54163
WY
147
148In 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:
149
150- *Base OS image* - It provides only `centos:centos7` and `ubuntu:14.04`. Insufficent for me.
151
152- *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.
153
154Therefore, I built these Docker images on my own.
155
2fd99bb9 156**NOTE:** [`ansible/ansible-docker-base`](https://github.com/ansible/ansible-docker-base) announced in September 2015: “Ansible no longer maintains images in Dockerhub directly.”
d3c54163 157
c20fa492
WY
158### Comparison: image size
159
160```
161REPOSITORY TAG VIRTUAL SIZE
162--------------------------- ------------------- ------------
163ansible/centos7-ansible stable 367.5 MB
164ansible/ubuntu14.04-ansible stable 286.6 MB
165
ae06b63d 166williamyeh/ansible alpine3-onbuild 66.4 MB
c20fa492
WY
167williamyeh/ansible centos6-onbuild 264.2 MB
168williamyeh/ansible centos7-onbuild 275.3 MB
169williamyeh/ansible debian7-onbuild 134.4 MB
170williamyeh/ansible debian8-onbuild 178.3 MB
171williamyeh/ansible ubuntu12.04-onbuild 181.9 MB
172williamyeh/ansible ubuntu14.04-onbuild 238.3 MB
173```
174
175
d3c54163
WY
176## Usage
177
aa3cb4d5 178Used mostly as a *base image* for configuring other software stack on some specified Linux distribution(s).
d3c54163 179
c20fa492 180Take 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:
d3c54163
WY
181
182```ruby
183# Vagrantfile
184
185Vagrant.configure(2) do |config|
186
187 # ==> Choose a Vagrant box to emulate Linux distribution...
deeab1a1
WY
188 config.vm.box = "ubuntu/xenial64"
189 #config.vm.box = "ubuntu/trusty64"
190 #config.vm.box = "debian/stretch64"
ae06b63d 191 #config.vm.box = "debian/jessie64"
de4433f3 192 #config.vm.box = "bento/centos-7.2"
de4433f3 193 #config.vm.box = "maier/alpine-3.3.1-x86_64"
e6ab6fea 194
d3c54163
WY
195
196 # ==> Executing Ansible...
197 config.vm.provision "ansible" do |ansible|
198 ansible.playbook = "playbook.yml"
199 end
200
201end
202```
203
ebfd2bf2
WY
204Virtual machines can emulate a variety of Linux distributions with good quality, at the cost of runtime overhead.
205
d3c54163
WY
206
207Docker 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:
208
209
210```dockerfile
211# Dockerfile
212
213# ==> Choose a base image to emulate Linux distribution...
deeab1a1
WY
214FROM williamyeh/ansible:ubuntu16.04
215#FROM williamyeh/ansible:ubuntu14.04
216#FROM williamyeh/ansible:debian9
ebfd2bf2 217#FROM williamyeh/ansible:debian8
02c34901 218#FROM williamyeh/ansible:centos7
ae06b63d 219#FROM williamyeh/ansible:alpine3
d3c54163 220
ebfd2bf2 221
d3c54163
WY
222# ==> Copying Ansible playbook...
223WORKDIR /tmp
224COPY . /tmp
225
226# ==> Creating inventory file...
227RUN echo localhost > inventory
228
229# ==> Executing Ansible...
230RUN ansible-playbook -i inventory playbook.yml \
231 --connection=local --sudo
232```
233
b1f3718d 234You may also work with `onbuild` variants, which take care of many routine steps for you:
ebfd2bf2
WY
235
236```dockerfile
237# Dockerfile
238
239# ==> Choose a base image to emulate Linux distribution...
deeab1a1
WY
240FROM williamyeh/ansible:ubuntu16.04-onbuild
241#FROM williamyeh/ansible:ubuntu14.04-onbuild
242#FROM williamyeh/ansible:debian9-onbuild
ebfd2bf2 243#FROM williamyeh/ansible:debian8-onbuild
02c34901 244#FROM williamyeh/ansible:centos7-onbuild
ae06b63d 245#FROM williamyeh/ansible:alpine3-onbuild
ebfd2bf2
WY
246
247
8287be90
WY
248# ==> Specify requirements filename; default = "requirements.yml"
249#ENV REQUIREMENTS requirements.yml
250
251# ==> Specify playbook filename; default = "playbook.yml"
252#ENV PLAYBOOK playbook.yml
ebfd2bf2 253
8287be90
WY
254# ==> Specify inventory filename; default = "/etc/ansible/hosts"
255#ENV INVENTORY inventory.ini
ebfd2bf2 256
ffe10e81 257# ==> Executing Ansible (with a simple wrapper)...
ebfd2bf2
WY
258RUN ansible-playbook-wrapper
259```
260
261
262
d3c54163
WY
263With 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!
264
ebfd2bf2
WY
265If better OS emulation (virtualization) isn't required, the Docker approach (containerization) should give you a more efficient Ansible experience.
266
d3c54163
WY
267
268
269## License
270
271Author: William Yeh <william.pjyeh@gmail.com>
272
273Licensed under the Apache License V2.0. See the [LICENSE file](LICENSE) for details.