Skip to content

Latest commit

 

History

History
39 lines (33 loc) · 978 Bytes

README.md

File metadata and controls

39 lines (33 loc) · 978 Bytes

Webhook, Dockerized, with Docker, for ad-hoc Docker Image builds

A combination of the official docker:1.10-git image, and the docker-webhook image.

This should be all you need to piece together a basic ad-hoc build system.

Example:

invocation

docker run \
    -v /var/run/docker.sock:/var/run/docker.sock \
    -v $PWD/webhook:/etc/webhook \
    -v $PWD/git:/git-cache \
    -v $PWD/id_rsa:/id_rsa \
    -d wpalmer/webhook:docker-1.10-git \
    -verbose -hooks=/etc/webhook/hooks.json -hotreload

example hook script

#!/bin/sh
GIT_URL="$1"
GIT_REF="$2"
GIT_COMMIT="$3"
GIT_DIR=/git-cache
GIT_SSH_COMMAND='ssh -i /id_rsa'
BUILD_DIR=/build-$GIT_COMMIT

export GIT_DIR GIT_SSH_COMMAND
mkdir -p $BUILD_DIR &&
git init &&
git fetch "$GIT_URL" "$GIT_REF" &&
git archive "$GIT_COMMIT:" | tar -x -C $BUILD_DIR &&
docker build $BUILD_DIR
rm -rf "$BUILD_DIR"