From ebfd2bf236ddaf7206dc77877dc9eb2d07a0dec9 Mon Sep 17 00:00:00 2001 From: William Yeh Date: Tue, 28 Apr 2015 12:21:34 +0800 Subject: Add: onbuild and debian8. --- ubuntu14.04-onbuild/Dockerfile | 43 ++++++++++++++++++++++++++++ ubuntu14.04-onbuild/ansible-playbook-wrapper | 30 +++++++++++++++++++ 2 files changed, 73 insertions(+) create mode 100644 ubuntu14.04-onbuild/Dockerfile create mode 100755 ubuntu14.04-onbuild/ansible-playbook-wrapper (limited to 'ubuntu14.04-onbuild') diff --git a/ubuntu14.04-onbuild/Dockerfile b/ubuntu14.04-onbuild/Dockerfile new file mode 100644 index 0000000..c0e400f --- /dev/null +++ b/ubuntu14.04-onbuild/Dockerfile @@ -0,0 +1,43 @@ +# Dockerfile for building Ansible image for Ubuntu 14.04 (trusty), with as few additional software as possible. +# +# @see https://launchpad.net/~ansible/+archive/ubuntu/ansible +# +# Version 1.0 +# + + +# pull base image +FROM ubuntu:14.04 + +MAINTAINER William Yeh + + +RUN echo "===> Adding Ansible's PPA..." && \ + echo "deb http://ppa.launchpad.net/ansible/ansible/ubuntu trusty main" | tee /etc/apt/sources.list.d/ansible.list && \ + echo "deb-src http://ppa.launchpad.net/ansible/ansible/ubuntu trusty main" | tee -a /etc/apt/sources.list.d/ansible.list && \ + apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys 7BB9C367 && \ + DEBIAN_FRONTEND=noninteractive apt-get update && \ + \ + \ + echo "===> Installing Ansible..." && \ + apt-get install -y ansible && \ + \ + \ + echo "===> Removing Ansible PPA..." && \ + rm -rf /var/lib/apt/lists/* /etc/apt/sources.list.d/ansible.list && \ + \ + \ + echo "===> Adding hosts for convenience..." && \ + echo '[local]\nlocalhost\n' > /etc/ansible/hosts + + +COPY ansible-playbook-wrapper /usr/local/bin/ + +ONBUILD RUN DEBIAN_FRONTEND=noninteractive apt-get update +ONBUILD WORKDIR /tmp +ONBUILD COPY . /tmp + + + +# default command: display Ansible version +CMD [ "ansible-playbook", "--version" ] diff --git a/ubuntu14.04-onbuild/ansible-playbook-wrapper b/ubuntu14.04-onbuild/ansible-playbook-wrapper new file mode 100755 index 0000000..bf137c8 --- /dev/null +++ b/ubuntu14.04-onbuild/ansible-playbook-wrapper @@ -0,0 +1,30 @@ +#!/bin/sh +# +# Simple wrapper for executing ansible-playbook with local connection. +# +# USAGE: +# ansible-playbook-wrapper [other ansible-playbook arguments] +# +# ENVIRONMENT VARIABLES: +# +# - PLAYBOOK: playbook filename; default = "playbook.yml" +# - INVENTORY: inventory filename; default = "/etc/ansible/hosts" +# + + +if [ -z "$PLAYBOOK" ]; then + PLAYBOOK=playbook.yml +fi + + +if [ -z "$INVENTORY" ]; then + exec ansible-playbook \ + $PLAYBOOK \ + --connection=local \ + "$@" +else + exec ansible-playbook \ + -i $INVENTORY $PLAYBOOK \ + --connection=local \ + "$@" +fi -- cgit v1.2.3