docker-reuse

command module
v0.0.0-...-0a1f6bf Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Oct 31, 2021 License: MIT Imports: 15 Imported by: 0

README

Overview

docker-reuse is a tool for building and publishing Docker images. It has two related and complementary purposes:

  1. Make the image content-addressable by tagging it with a fingerprint computed from the sources referenced in the Dockerfile.

    As a result, the image tag never changes unless the sources have changed, and so Kubernetes (or another orchestration system) won't have to restart the containers that use that image.

  2. Save time and resources by bypassing the lengthy build and push operations if not a single source has changed.

    This performance improvement is less significant for the local Docker builds, which are relatively fast if the sources did not change. However, for the environments where Docker layer caching is not available (like Google Cloud Build), knowing when it is safe to skip the entire build can be a huge time-saver.

Here's how docker-reuse works:

  1. It computes a 160-bit fingerprint from the Dockerfile sources.
  2. It attempts to find a previously built image in the registry using the fingerprint as a tag.
  3. If no such image exists, the tool builds it and pushes it to the registry.
  4. In either case, docker-reuse updates all references to the image in a user-provided file to contain this exact image tag.

Usage as a command line tool

docker-reuse [OPTIONS] PATH IMAGE FILE [ARG...]

Positional arguments are:

  • PATH

    Docker build context directory

  • IMAGE

    Name of the image to find or build

  • FILE

    File to update with the new image tag

  • [ARG...]

    Optional build arguments (Format: NAME[=value]). If the value is not provided, it is taken from the environment variable having the same name as the build argument.

Options:

  • -f Dockerfile

    Pathname of the Dockerfile (Default is PATH/Dockerfile)

  • -p string

    Placeholder for the image name in FILE (by default, the image name itself).

  • -q

    Suppress build output

Example

docker-reuse \
    -f ./docker/myapp/Dockerfile \
    ./src/myapp \
    mydockerhubid/myapp \
    ./kubernetes/myapp/deployment.yaml

Usage as a Google Cloud Build builder

When used as a community Cloud Build builder, docker-reuse replaces the docker builder steps as well as the images field in cloudbuild.yaml.

Example

Here's an example of a trivial but complete cloudbuild.yaml:

steps:
  - id: build-and-push
    name: gcr.io/$PROJECT_ID/docker-reuse
    args: [
        "-f",
        "docker/hello-world/Dockerfile",
        "-p",
        "IMAGE_PLACEHOLDER", # the string to replace in deployment.yaml
        ".",
        "gcr.io/$PROJECT_ID/hello-world", # the image to build
        "kubernetes/hello-world/deployment.yaml", # the file to update
        "GREETING=Hello, World!", # build-arg value is provided
        "PORT", # build-arg value is taken from the environment
      ]
    env:
      - "PORT=8080"
    timeout: 900s

  - id: deploy
    waitFor: ["build-and-push"]
    name: gcr.io/cloud-builders/kubectl
    args: ["apply", "-k", "kubernetes/hello-world"]
    env:
      - "CLOUDSDK_COMPUTE_ZONE=${_CLUSTER_ZONE}"
      - "CLOUDSDK_CONTAINER_CLUSTER=${_CLUSTER_NAME}"

substitutions:
  _CLUSTER_ZONE: us-east4-b
  _CLUSTER_NAME: cluster-1

Additional information and working examples can be found on the community builder page.

Documentation

The Go Gopher

There is no documentation for this package.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL