Skip to content

wpalmer/webhook.Docker

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commits
 
 
 
 

Repository files navigation

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"

About

variations on the almir/webhook Docker image ( https://hub.docker.com/r/almir/webhook/ )

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published