drydock

(WORK IN PROGRESS)

A ruby DSL to build your own docker images. Images are built based on instructions contained in your project's Drydockfile.

Why not Dockerfile?

Dockerfiles are great to start out with, but:

  1. They are static, which isn't necessarily a bad thing. I'm not opposed to a declarative approach to building images, but sometimes it may be limiting.
  2. They are less hackable, because docker build doesn't support plugins to expand its capabilities.
  3. More complicated build pipelines are hard to implement, or perhaps even impossible. For instance, being able to build multiple images, then combine them at the end, would be a nice option. Imagine building your ruby gem dependencies and node.js dependencies separately, before combining both images into your application's final image.
  4. Caching rules are fairly limiting. For instance, when your Gemfile changes, it would be nice to import a configurably-older image, import the new Gemfile, and re-run the build. On the other hand, it would be important to be able to limit the age of the cache.

Why Drydock?

Drydock interfaces directly with the Docker Remote API via the docker-api gem. It's not for every use case, but it provides great control over what and how an image is built.

Drydock supports plugins, either provided through ruby gems or ruby files included in your project being built by Drydock.

Drydockfiles are written in ruby.

Production Installation

Either (a) gem install drydock, or (b) add "drydock" to your project's Gemfile, and run bundle.

In your project's root directory, you'll want to create a Drydockfile containing drydock functions. When you're ready, build an image using:

$ drydock

Alternatively, point drydock to a directory containing the Drydockfile, or to any file to treat it as the Drydockfile, e.g.:

$ drydock ~/source/miniproject # project directory expects a file named Drydockfile
$ drydock ~/source/miniproject/drydock-definition.rb # expects a drydock-definition.rb

Example Drydockfiles may be seen in examples/.

Development Installation

This is needed if you plan on hacking drydock:

$ git clone [email protected]:ripta/drydock.git
$ bundle

Roadmap

  1. Customizable caching subsystem.
  2. Derived docker images from a previous build step.
  3. Composable docker images.
  4. Customizable caching rules.