A Docker image that is used to build other Docker images using other resources.
To build the image, from the repository root:
docker build -t runnable/image-builder .
This builds an image from the following resources:
- Dockerfile (stored on S3, versioned)
- Source directory (on S3, with versions)
- Repository:
- From Github private repo - using a deploy key
- From Github public repo - using https
Building an image with this image is a simple as using docker run
and setting up environment variables in the command. An example script is included (example.sh
), the contents of which are here (with some notes on each below):
docker run \
-e RUNNABLE_AWS_ACCESS_KEY='AWS-ACCESS-KEY' \
-e RUNNABLE_AWS_SECRET_KEY='AWS-SECRET-KEY' \
-e RUNNABLE_FILES_BUCKET='aws.bucket.name' \
-e RUNNABLE_PREFIX='source/' \
-e RUNNABLE_FILES='{ "source/Dockerfile": "Po.EGeNr9HirlSJVMSxpf1gaWa5KruPa" }' \
-e RUNNABLE_KEYS_BUCKET='aws.keys.bucket.name' \
-e RUNNABLE_DEPLOYKEY='path/to/a/id_rsa' \
-e RUNNABLE_REPO='[email protected]:visionmedia/express' \
-e RUNNABLE_COMMITISH='master' \
-e RUNNABLE_DOCKER='tcp://192.168.59.103:2375' \
-e RUNNABLE_DOCKERTAG='docker-tag' \
-e RUNNABLE_DOCKER_BUILDOPTIONS='' \
-v /host/path/to/cache:/cache:rw \
runnable/image-builder
RUNNABLE_AWS_ACCESS_KEY
: your AWS access keyRUNNABLE_AWS_SECRET_KEY
: your AWS secret access keyRUNNABLE_FILES_BUCKET
: bucket where the Dockerfile/source files are storedRUNNABLE_PREFIX
: prefix of the source path of the files in S3RUNNABLE_FILES
: a string representing a JSON object with S3Key
:VersionId
. This MUST include a Dockerfile, and optionally can contain other files for the source directoryRUNNABLE_KEYS_BUCKET
: for a private repository, this is the bucket where deploy keys are storedRUNNABLE_REPO
: repository to checkout usinggit
. Must be in the SSH format, w/ no.git
at the endRUNNABLE_COMMITISH
: something to checkout in the repositoryRUNNABLE_DOCKER
: Docker connection information, best formattedtcp://ipaddress:port
RUNNABLE_DOCKERTAG
: Tag for the built Docker imageRUNNABLE_DOCKER_BUILDOPTIONS
: other Docker build options-v /host/path/to/cache:/cache:rw
: cache for github repos
This supports checking out multiple repositories, with multiple commitishes, and deploy keys. Set the variable using ;
as the separator and it will download all of them.
The following variables support multiple values:
RUNNABLE_DEPLOYKEY
RUNNABLE_REPO
RUNNABLE_COMMITISH
NOTE: RUNNABLE_REPO
and RUNNABLE_COMMITISH
need to be a one-to-one correspondence for it to work correctly (does NOT assume master
or any other value).
If you need to debug the builder, you can set the environment variables, then additionally set --rm -ti
as run
options, and put bash
on the end of the command after runnable/image-builder
. This will dump you into a shell where you can run ./dockerBuild.sh
to manually run the build!