diff options
Diffstat (limited to '1.9-debian7-onbuild')
-rw-r--r-- | 1.9-debian7-onbuild/Dockerfile | 53 | ||||
-rwxr-xr-x | 1.9-debian7-onbuild/ansible-playbook-wrapper | 49 |
2 files changed, 102 insertions, 0 deletions
diff --git a/1.9-debian7-onbuild/Dockerfile b/1.9-debian7-onbuild/Dockerfile new file mode 100644 index 0000000..5ca7ce3 --- /dev/null +++ b/1.9-debian7-onbuild/Dockerfile | |||
@@ -0,0 +1,53 @@ | |||
1 | # Dockerfile for building Ansible 1.9 image for Debian 7 (wheezy), with as few additional software as possible. | ||
2 | # | ||
3 | # @see https://launchpad.net/~ansible/+archive/ubuntu/ansible | ||
4 | # | ||
5 | # Version 1.0 | ||
6 | # | ||
7 | |||
8 | |||
9 | # pull base image | ||
10 | FROM debian:wheezy | ||
11 | |||
12 | MAINTAINER William Yeh <william.pjyeh@gmail.com> | ||
13 | |||
14 | |||
15 | RUN echo "===> Installing python, sudo, and supporting tools..." && \ | ||
16 | apt-get update && \ | ||
17 | DEBIAN_FRONTEND=noninteractive \ | ||
18 | apt-get install -y \ | ||
19 | python python-yaml sudo \ | ||
20 | curl gcc python-pip python-dev && \ | ||
21 | \ | ||
22 | \ | ||
23 | echo "===> Installing Ansible..." && \ | ||
24 | pip install ansible==1.9.4 && \ | ||
25 | \ | ||
26 | \ | ||
27 | echo "===> Removing unused APT resources..." && \ | ||
28 | apt-get -f -y --auto-remove remove gcc python-pip python-dev && \ | ||
29 | apt-get clean && \ | ||
30 | rm -rf /var/lib/apt/lists/* /tmp/* && \ | ||
31 | \ | ||
32 | \ | ||
33 | echo "===> Adding hosts for convenience..." && \ | ||
34 | mkdir -p /etc/ansible && \ | ||
35 | echo 'localhost' > /etc/ansible/hosts | ||
36 | |||
37 | |||
38 | COPY ansible-playbook-wrapper /usr/local/bin/ | ||
39 | |||
40 | ONBUILD RUN DEBIAN_FRONTEND=noninteractive apt-get update && \ | ||
41 | echo "===> Updating TLS certificates..." && \ | ||
42 | apt-get install -y openssl ca-certificates | ||
43 | |||
44 | ONBUILD WORKDIR /tmp | ||
45 | ONBUILD COPY . /tmp | ||
46 | ONBUILD RUN \ | ||
47 | echo "===> Diagnosis: host information..." && \ | ||
48 | ansible -c local -m setup all | ||
49 | |||
50 | |||
51 | |||
52 | # default command: display Ansible version | ||
53 | CMD [ "ansible-playbook", "--version" ] | ||
diff --git a/1.9-debian7-onbuild/ansible-playbook-wrapper b/1.9-debian7-onbuild/ansible-playbook-wrapper new file mode 100755 index 0000000..0ba45e6 --- /dev/null +++ b/1.9-debian7-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 | |||
21 | if [ -z "$REQUIREMENTS" ]; then | ||
22 | REQUIREMENTS=requirements.yml | ||
23 | fi | ||
24 | |||
25 | if [ -f "$REQUIREMENTS" ]; then | ||
26 | ansible-galaxy install -r $REQUIREMENTS | ||
27 | fi | ||
28 | |||
29 | |||
30 | # | ||
31 | # execute playbook | ||
32 | # | ||
33 | |||
34 | if [ -z "$PLAYBOOK" ]; then | ||
35 | PLAYBOOK=playbook.yml | ||
36 | fi | ||
37 | |||
38 | |||
39 | if [ -z "$INVENTORY" ]; then | ||
40 | exec ansible-playbook \ | ||
41 | $PLAYBOOK \ | ||
42 | --connection=local \ | ||
43 | "$@" | ||
44 | else | ||
45 | exec ansible-playbook \ | ||
46 | -i $INVENTORY $PLAYBOOK \ | ||
47 | --connection=local \ | ||
48 | "$@" | ||
49 | fi | ||