docker-build-layers
v0.0.3
Published
Command line helper to simplify building docker images that have multiple layers.
Downloads
4
Readme
docker-build-layers
Command line helper to simplify building docker images that have multiple layers.
Why
Sometimes you want to layer your docker images to speed up build process when you don't have to go through every step
Install
npm install --save-dev docker-build-layers
Usage
dbl -h
dbl
relies on docker
command being present in your PATH.
Create
docker-build-layers-config.json
file with content similar to:{ "prefix": "prefix-string/", "afterEach": "gcloud docker push <%= tag %>", "images": { "base-image": { "version": 5, "dockerfile": "./Dockerfile-base-image" }, "server": { "version": 3, "dockerfile": "./Dockerfile-server", "isTemplate": true, "baseimage": "base-image" } } }
prefix: string
(optional) A string to prepend to all image names andbaseimage
namesafterEach: string
(optional) A command that will be executed after each image build. The command can be a lodash template. A locals of{tag: number}
will be applied when compiling the template.tag
is the tag of the image just built.images
A object of image names to their configurationsversion: number
The version portion of a image tag. The version number will be incremented every time the image it built. When generating an image tag, the version number will be prefixed with av
character. E.g. if image name isdemo-image
, version is3
, the final tag will becomedemo-image:v3
.dockerfile: string
The path to dockerfile of current image.baseimage: string
(optional) The baseimage name. Name must point to image configurations underimages
. This must be specified whenisTemplate
istrue
.isTemplate: boolean = false
(optional) If true,dockerfile
will be treated as a lodash template. A locals of{baseimage_version: number}
will be applied. You are responsible to use<%= baseimage_version %>
in your dockerfile template. E.g.FROM baseimage-name:v<%= baseimage_version %> ADD index.js /app/index.js CMD ["node", "/app/index.js"]
docker-build-layers will find the
baseimage_version
according to providedbaseimage
and use that image configuration's version.
Run
dbl -l
to see a list of available images to build.Run
dbl -b <image-name>
to build the specific image. Any image withbaseimage
configuration equals to the name of built image will also be built. Thebaseimage_version
of child images will reflect the new parent image version.At the end
docker-build-layers-config.json
will be updated with new versions. It is recommended to commit this file to source control.