aboutsummaryrefslogtreecommitdiffhomepage
path: root/1.9-alpine3-onbuild
diff options
context:
space:
mode:
authorWilliam Yeh <william.pjyeh@gmail.com>2016-03-08 12:10:00 +0800
committerWilliam Yeh <william.pjyeh@gmail.com>2016-03-08 12:10:00 +0800
commit14e54a03841a837231975247f70f063527a6f7b6 (patch)
tree3d8630603043c541b5637c8164ce5c573c27d7b6 /1.9-alpine3-onbuild
parent7b2618d5a775fd669a36076e6f8d2380aa73af69 (diff)
downloaddocker-ansible-14e54a03841a837231975247f70f063527a6f7b6.tar.gz
docker-ansible-14e54a03841a837231975247f70f063527a6f7b6.tar.zst
docker-ansible-14e54a03841a837231975247f70f063527a6f7b6.zip
Add: Ansible 1.9 series.
Diffstat (limited to '1.9-alpine3-onbuild')
-rw-r--r--1.9-alpine3-onbuild/Dockerfile47
-rwxr-xr-x1.9-alpine3-onbuild/ansible-playbook-wrapper49
2 files changed, 96 insertions, 0 deletions
diff --git a/1.9-alpine3-onbuild/Dockerfile b/1.9-alpine3-onbuild/Dockerfile
new file mode 100644
index 0000000..2af2f48
--- /dev/null
+++ b/1.9-alpine3-onbuild/Dockerfile
@@ -0,0 +1,47 @@
1# Dockerfile for building Ansible 1.9 image for Alpine 3, with as few additional software as possible.
2#
3# @see https://github.com/gliderlabs/docker-alpine/blob/master/docs/usage.md
4#
5# Version 1.0
6#
7
8
9# pull base image
10FROM alpine:3.3
11
12MAINTAINER William Yeh <william.pjyeh@gmail.com>
13
14
15RUN echo "===> Adding Python runtime..." && \
16 apk --update add python py-pip openssl ca-certificates && \
17 apk --update add --virtual build-dependencies python-dev build-base && \
18 pip install --upgrade pip && \
19 \
20 \
21 echo "===> Installing Ansible..." && \
22 pip install ansible==1.9.4 && \
23 \
24 \
25 echo "===> Removing package list..." && \
26 apk del build-dependencies && \
27 rm -rf /var/cache/apk/* && \
28 \
29 \
30 echo "===> Adding hosts for convenience..." && \
31 mkdir -p /etc/ansible && \
32 echo 'localhost' > /etc/ansible/hosts
33
34
35COPY ansible-playbook-wrapper /usr/local/bin/
36
37
38ONBUILD WORKDIR /tmp
39ONBUILD COPY . /tmp
40ONBUILD RUN \
41 echo "===> Diagnosis: host information..." && \
42 ansible -c local -m setup all
43
44
45
46# default command: display Ansible version
47CMD [ "ansible-playbook", "--version" ]
diff --git a/1.9-alpine3-onbuild/ansible-playbook-wrapper b/1.9-alpine3-onbuild/ansible-playbook-wrapper
new file mode 100755
index 0000000..0ba45e6
--- /dev/null
+++ b/1.9-alpine3-onbuild/ansible-playbook-wrapper
@@ -0,0 +1,49 @@
1#!/bin/sh
2#
3# Simple wrapper for executing ansible-galaxy and ansible-playbook
4# with local connection.
5#
6# USAGE:
7# ansible-playbook-wrapper [other ansible-playbook arguments]
8#
9# ENVIRONMENT VARIABLES:
10#
11# - REQUIREMENTS: requirements filename; default = "requirements.yml"
12# - PLAYBOOK: playbook filename; default = "playbook.yml"
13# - INVENTORY: inventory filename; default = "/etc/ansible/hosts"
14#
15
16
17#
18# install Galaxy roles, if any
19#
20
21if [ -z "$REQUIREMENTS" ]; then
22 REQUIREMENTS=requirements.yml
23fi
24
25if [ -f "$REQUIREMENTS" ]; then
26 ansible-galaxy install -r $REQUIREMENTS
27fi
28
29
30#
31# execute playbook
32#
33
34if [ -z "$PLAYBOOK" ]; then
35 PLAYBOOK=playbook.yml
36fi
37
38
39if [ -z "$INVENTORY" ]; then
40 exec ansible-playbook \
41 $PLAYBOOK \
42 --connection=local \
43 "$@"
44else
45 exec ansible-playbook \
46 -i $INVENTORY $PLAYBOOK \
47 --connection=local \
48 "$@"
49fi