All Projects → smartrecruiters → docker-bakery

smartrecruiters / docker-bakery

Licence: MIT license
Dockerfile hierarchy management tool with automatic rebuilding of dependent images when parent changes

Programming Languages

go
31211 projects - #10 most used programming language

Projects that are alternatives of or similar to docker-bakery

Tempy
Python Object Oriented Html Templating System
Stars: ✭ 126 (+320%)
Mutual labels:  templating, tree-structure
essex
Essex - Boilerplate for Docker Based Projects
Stars: ✭ 32 (+6.67%)
Mutual labels:  dockerfiles, dockerfile-generator
Dockerfiles
Docker Projects Collection
Stars: ✭ 43 (+43.33%)
Mutual labels:  dockerfiles, images
cybernode-archive
🚀 Manager of docker images for cybernomics
Stars: ✭ 20 (-33.33%)
Mutual labels:  images
sora
A simple library to display images in Jupyter notebooks
Stars: ✭ 15 (-50%)
Mutual labels:  images
Project-Padoru
Collection of Padoru Images
Stars: ✭ 20 (-33.33%)
Mutual labels:  images
Prinder
Free Pull Request reminder for Github. Has configurations to post reminders to Slack and email along with jinja templating
Stars: ✭ 21 (-30%)
Mutual labels:  templating
Duplicate-Image-Finder
difPy - Python package for finding duplicate or similar images within folders
Stars: ✭ 187 (+523.33%)
Mutual labels:  images
Image-Processing-Library
Library for processing and manipulating images.
Stars: ✭ 36 (+20%)
Mutual labels:  images
icons
a collection of custom icons for use with the notion-enhancer's "icon sets" integration
Stars: ✭ 29 (-3.33%)
Mutual labels:  images
django-content-gallery
A Django application allows to attach a collection of images to objects of any model in any app
Stars: ✭ 18 (-40%)
Mutual labels:  images
cineast
Cineast is a multi-feature content-based mulitmedia retrieval engine. It is capable of retrieving images, audio- and video sequences as well as 3d models based on edge or color sketches, textual descriptions and example objects.
Stars: ✭ 51 (+70%)
Mutual labels:  images
tailwindcss-dash-docset
TailwindCSS Dash Docset, built with the Dash Docset Builder in PHP. We needed it. 🌈️
Stars: ✭ 37 (+23.33%)
Mutual labels:  builder
wp-term-images
Images for categories, tags, and other taxonomy terms
Stars: ✭ 34 (+13.33%)
Mutual labels:  images
gpp
General PreProcessor
Stars: ✭ 25 (-16.67%)
Mutual labels:  templating
lombok-rs
Lombok port for Rust
Stars: ✭ 31 (+3.33%)
Mutual labels:  builder
Waifu2x-Image-Saver
A Firefox extension to download any image and process them with Waifu2x with one click.
Stars: ✭ 13 (-56.67%)
Mutual labels:  images
spaceholder
🌅 Download placeholder images from public domain sources blazingly fast
Stars: ✭ 24 (-20%)
Mutual labels:  images
pixie
Tiny template functions.
Stars: ✭ 14 (-53.33%)
Mutual labels:  templating
gogen
Command-line tool to generate GO applications and libraries
Stars: ✭ 17 (-43.33%)
Mutual labels:  builder

docker-bakery

Build Software License Go Report Card Go Doc

Purpose

Aim of the docker-bakery is to provide simple solution for automatic rebuilding of dependent images when parent image changes.

Features

  • Automatic triggering of dependant images builds when parent changes
  • Support for Dockerfile templating with usage of golang template engine
  • Support for semantic versioning scope changes
  • Possibility to build and push docker images to custom registries
  • Possibility of providing custom build and push commands
  • Versioning with git tags
  • Written in golang

Example usage

"Example usage"

Example project

See docker-bakery-example to check how this tool works in action.

Assumptions

  • convention: image name is equal to the parent directory name

  • presence of Dockerfile.template will qualify image for automatic updates triggered by base images (FROM clause is analyzed)

  • first line in the dockerfile must start with FROM otherwise dependency will not be determined for that file

  • scope change in the base image is propagated to the child images

  • to benefit from dependency updates the child image must use in template variable according to the convention: {{.BASE_IMAGE_NAME_VERSION}} where BASE_IMAGE_NAME should be substituted with uppercase directory name of the base image.

    Any hyphens (-) or dots (.) should be replaced with the underscores (_) in the variable name.

    For example the correct variable name for image/directory named jdk8-gradle2.14 is {{.JDK8_GRADLE2_14_VERSION}}

  • docker file templates need to be placed in git repository (with defined remote) in order versioning of the images could work (versioning is done via git tags)

  • additional dynamic variables will be accessible for build templating

Config

docker-bakery needs config.json to be provided. Config is used for templating Dockerfile.template files and build commands Structure of the config.json file is as follows:

 {
	"properties": {
		"DEFAULT_PULL_REGISTRY": "some-private-registry.com:9084",
		"DEFAULT_PUSH_REGISTRY": "some-private-registry.com:9082",
		"DOCKERFILE_DIR": "Reserved dynamic property, contain path to currently build image. Can be used in template.",
		"IMAGE_NAME": "Reserved dynamic property, represents image name. Can be used in template.",
		"IMAGE_VERSION": "Reserved dynamic property, represents new version of the image. Can be used in template."
	},
	"commands": {
		"defaultBuildCommand": "docker build --tag {{.IMAGE_NAME}}:{{.IMAGE_VERSION}} --tag {{.DEFAULT_PUSH_REGISTRY}}/{{.IMAGE_NAME}}:{{.IMAGE_VERSION}} --tag {{.DEFAULT_PULL_REGISTRY}}/{{.IMAGE_NAME}}:{{.IMAGE_VERSION}} {{.DOCKERFILE_DIR}}",
		"defaultPushCommand": "docker push {{.DEFAULT_PUSH_REGISTRY}}/{{.IMAGE_NAME}}:{{.IMAGE_VERSION}}"
	},
	"reportFileName": "custom-report-filename.json",
	"verbose": false,
	"autoBuildExcludes": [
		"some-image-name-that-will-be-excluded-from-build-when-parent-changes"
	]
 }

Properties config section

This section is dedicated for storing any custom properties that may be available for usage in Dockerfile.template files. Feel free to modify this section and provide properties according to your needs. Flat structure should be preserved.

This section will also be updated with dynamic properties during runtime. Dynamic properties do not have to be defined in config as they are automatically added during runtime.

Following properties belong to dynamic ones:

  • DOCKERFILE_DIR - will be replaced with currently processed dockerfile dir
  • IMAGE_NAME - will be replaced with currently processed image name
  • IMAGE_VERSION - will be replaced with currently processed image version
  • *_VERSION - where * is the image name. There will be that many properties of this kind as many images are in hierarchy. Initially those properties will be filled with latest versions of pushed images.
  • BAKERY_BUILDER_NAME - will be replaced with the git user name (taken from git config user.name)
  • BAKERY_BUILDER_EMAIL - will be replaced with the git user email (taken from git config user.email)
  • BAKERY_BUILDER_HOST - will be replaced with hostname of the machine where build is executed
  • BAKERY_BUILD_DATE - will be replaced with current build date
  • BAKERY_IMAGE_HIERARCHY - will be replaced with the path representing image hierarchy in the following format:

parent1:versionOfParent1->parent2:versionOfParent2->imageName:imageVersion

Hierarchy is built automatically given that parent images are exporting the same ENV variable that can be accessed in child images. Check the example project for references.

  • BAKERY_SIGNATURE_VALUE - will be replaced with a one liner string value embedding other BAKERY* variables together. Can be used in templates to create for example ENV variable. Example:

SINGATURE=Builder Name;[email protected];builder-host-name;2018-03-16 15:47:58;alpine-java:8u144b01_jdk->mammal:3.2.0->dog:4.0.0->dobermann:4.0.0->smaller-dobermann:4.0.0

  • BAKERY_SIGNATURE_ENVS - will be replaced with embedded BAKERY* variables in a key=value format. Convenient if you wish to have all BAKERY* variables in a dockerfile under single key. Check the example project for references.

Commands config section

This section contains two templates used for building and pushing docker images. It allows for specifying custom parameters. Commands defined here as templates will be filled with available defined properties from the config section + the dynamic properties set during runtime.

Other config attributes

reportFileName - if set it will be used as a file name to store information (in JSON format) about successfully built images.

Dockerfile.template

Presence of the Dockerfile.template file qualifies the image for the place in hierarchy and therefore allows for triggering builds that depend from this image. It also ensures that image build will be triggered when its parent changes.

Usage

To make use of docker-bakery as convenient as possible checkout usage of Makefiles from the example project that will simplify usage greatly. If you don't want to use makefiles you can still use docker-bakery tool directly. Checkout the CLI help via docker-bakery -h.

Command help

COMMANDS:
     fill-template, prepare, prepare-recipe         Used to fill Dockerfile.template file. Values needed for template are taken from the config file and from dynamic properties provided during runtime.
     build                                          Used to build next version of the images in given scope. Optionally it can skip build of dependant images.
     push                                           Used to push next version of the images in given scope. Optionally it can skip push of dependant images.
     show-structure, ss, show-hierarchy, hierarchy  Used to display hierarchy of the images
     dump-latest-versions, dump                     Used to dump data about latest versions of images to the provided file
     help, h                                        Shows a list of commands or help for one command

Command fill-template

docker-bakery fill-template -h
NAME:
   docker-bakery fill-template - Used to fill Dockerfile.template file. Values needed for template are taken from the config file and from dynamic properties provided during runtime.

USAGE:
   docker-bakery fill-template [command options] [arguments...]

OPTIONS:
   --input value, -i value      Required. Input Dockerfile.template.
   --output value, -o value     Required. Output Dockerfile generated from template.
   --config value, -c value     Required. Path to config.json with properties and build commands defined.
   --rootDir value, --rd value  Optional. Used to override rootDir of the dockerfiles location. Can be defined in config.json, provided in this argument or determined dynamically from the base dir of config file.

Command build

docker-bakery build -h
NAME:
   docker-bakery build - Used to build next version of the images in given scope. Optionally it can skip build of dependant images.

USAGE:
   docker-bakery build [command options] [arguments...]

OPTIONS:
   --dockerfile value, -d value  Required. Path to dockerfile/dockerfile.template file that needs to be build.
   --scope value, -s value       Required. Scope of the change used to generate the next version. Can be one of: major/minor/patch.
   --config value, -c value      Required. Path to config.json with properties and build commands defined.
   --root-dir value, --rd value  Optional. Used to override rootDir of the dockerfiles location. Can be defined in config.json, provided in this argument or determined dynamically from the base dir of config file.
   --skip-dependants, --sd       Optional. False be default. If this flag is set build of the parent will not trigger dependant builds.
   --property value, -p value    Optional. Allows for providing additional multiple properties that can be used during templating. Overrides properties defined in config.json file. Expected format is: -p propertyName=propertyValue
     

Command push

docker-bakery push -h
NAME:
   docker-bakery push - Used to push next version of the images in given scope. Optionally it can skip push of dependant images.

USAGE:
   docker-bakery push [command options] [arguments...]

OPTIONS:
   --dockerfile value, -d value  Required. Path to the dockerfile/dockerfile.template that needs to be pushed.
   --scope value, -s value       Required. Scope of the change used to generate the next version. Can be one of: major/minor/patch.
   --config value, -c value      Required. Path to config.json with properties and build commands defined.
   --rootDir value, --rd value   Optional. Used to override rootDir of the dockerfiles location. Can be defined in config.json, provided in this argument or determined dynamically from the base dir of config file.
   --skip-dependants, --sd       Optional. False be default. If this flag is set build of the parent will not trigger dependant builds.

Command copy-images-hierarchy

Let's say you have a given hierarchy of images:

python-3.8
    python-3.8-jdk
    python-3.8-web
        python-3.8-flask

If you want to quickly introduce python3.9 for those images, you can:

  1. create python-3.9 image
  2. recreate images hierarchy
docker-bakery copy-images-hierarchy --config ${path_to_config} --base-image sr-python3.8 -rp 3.8=3.9 -r   

The resulting hierarchy will look like this:

python-3.9
    python-3.9-jdk
    python-3.9-web
        python-3.9-flask

For more options run docker-bakery copy-images-hierarchy help

How to apply it to your project

Applying docker-bakery is quite simple. Take a look here

Limitations

At the moment docker multi-stage builds are not fully supported. Only the first line FROM is taken into consideration when determining the parent of the image and its place in the hierarchy.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].