aboutsummaryrefslogtreecommitdiffhomepage
path: root/alpine3-onbuild
diff options
context:
space:
mode:
authorWilliam Yeh <william.pjyeh@gmail.com>2015-09-17 15:26:56 +0800
committerWilliam Yeh <william.pjyeh@gmail.com>2015-09-17 15:26:56 +0800
commitae06b63dc27567ebe8b8fde7f32e268ae706182d (patch)
tree06253e09a08f3d9d148660eabb4d5fe05155be1d /alpine3-onbuild
parentaa3cb4d5e3a74a02a65b4b350251085e47d5eea4 (diff)
downloaddocker-ansible-ae06b63dc27567ebe8b8fde7f32e268ae706182d.tar.gz
docker-ansible-ae06b63dc27567ebe8b8fde7f32e268ae706182d.tar.zst
docker-ansible-ae06b63dc27567ebe8b8fde7f32e268ae706182d.zip
Add: support for Alpine 3
Diffstat (limited to 'alpine3-onbuild')
-rw-r--r--alpine3-onbuild/Dockerfile47
-rwxr-xr-xalpine3-onbuild/ansible-playbook-wrapper49
2 files changed, 96 insertions, 0 deletions
diff --git a/alpine3-onbuild/Dockerfile b/alpine3-onbuild/Dockerfile
new file mode 100644
index 0000000..41d6fab
--- /dev/null
+++ b/alpine3-onbuild/Dockerfile
@@ -0,0 +1,47 @@
1# Dockerfile for building Ansible 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.2
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 && \
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 '[local]\nlocalhost\n' > /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/alpine3-onbuild/ansible-playbook-wrapper b/alpine3-onbuild/ansible-playbook-wrapper
new file mode 100755
index 0000000..0ba45e6
--- /dev/null
+++ b/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