Your Web News in One Place

Help Webnuz

Referal links:

Sign up for GreenGeeks web hosting
June 28, 2022 02:40 am GMT

How to use Docker layer caching in GitHub Actions

As we went through in our recent post Fast Dockerfiles: theory and practice, it's important to write a Dockerfile that builds quickly. Once you have one, the next step is to actually build it in your CI environment like GitHub Actions, CircleCI, Travis CI, etc.

In this post, we are going to focus on how to build a Docker image as quickly as possible in GitHub Actions by leveraging layer caching. We will touch on what layer caching is, why it's important, and how we can leverage it in GitHub Actions to achieve faster builds.

Docker layer cache

A Docker layer is the output of running a step defined in your Dockerfile. It is built off the previous layer before it (the parent) and contains the filesystem changes your step defined, files added, modified, or deleted. A final Docker image is just a series of Docker layers laid one after another, plus some associated metadata, as the build moves from the top of your Dockerfile to the bottom.

The benefit of caching the layers that make up a final image is that, rather than building them again, you can reuse layers that have not changed from previous builds. Needing to do less work in a build makes the build faster.

Building Docker images in GitHub Actions

If you have never built a Docker image via GitHub Actions, this section is for you. If you already know how to build images with Actions, feel free to jump to the next section, where we talk about caching layers in Actions.

Building a Docker image via GitHub Actions requires creating a new folder and file in your repository. You need to create a .github directory at the root of your repo, followed by a workflows directory inside it. Then you are going to add a YAML file called ci.yml.

mkdir .githubmkdir .github/workflowstouch .github/workflows/ci.yml

Inside the new YAML file, we'll define a job that will build your Docker image.

name: Build Docker imageon:  push: {}jobs:  build-with-docker:  name: Build with Docker  runs-on: ubuntu-20.04  steps:    - uses: actions/checkout@v3    - uses: docker/setup-buildx-action@v1    - uses: docker/build-push-action@v2      with:        context: .

This is a complete GitHub Actions workflow that consists of a job called Build with Docker that will build your image based on the Dockerfile defined at the root of your repository. Note that if your Dockerfile is in a subdirectory, you'll need to specify the path to the Dockerfile as an additional file field.

The setup-buildx-action configures Docker Buildx to create a builder instance for running the image build. The following step build-push-action, makes use of that instance to build your Docker image. The build-push-action supports all of the features provided by BuildKit out of the box. In our simple example, we are only specifying the Docker context, but more advanced features like SSH, secrets, and build args are supported.

If you commit the new ci.yml file, you should see a Docker build completed via GitHub Actions.

build with docker

This is functional, you can build images via GitHub Actions in addition to your local machine with this simple workflow. But if you run the build above more than once, without making any code changes, you may notice a problem build steps are recomputed every time, every step in the Dockerfile needs to re-run. With this basic workflow, we are not caching any of the Docker layers, so we have to recompute each layer for every build.

Let's take a look at how we can add in the layer caching.

Docker layer caching in GitHub Actions

To cache the layers produced by a docker build in GitHub Actions we need to add a few more arguments to our build-push-action step. We are going to add the cache-from and cache-to arguments.

name: Build Docker imageon:  push: {}jobs:  build-with-docker:    name: Build with Docker    runs-on: ubuntu-20.04    steps:      - uses: actions/checkout@v3      - uses: docker/setup-buildx-action@v1      - uses: docker/build-push-action@v2        with:          context: .          cache-from: type=gha          cache-to: type=gha,mode=max

Below our context there is now, cache-from and cache-to, both are configured to use the cache type gha. This is an experimental cache exporter for GitHub Actions provided by buildx and BuildKit. It uses the GitHub Cache API to fetch and load the Docker layer cache blobs across builds.

docker cache

By adding remote cache loading and saving, you can now reuse your Docker layers from previous builds as we see with the CACHED hits above. This is a nice improvement if you're building images in GitHub Actions, but it does come with limitations:

  1. The GitHub Cache API only supports a maximum size of 10 GB for the entire repository
  2. Loading and saving cache is network bound, meaning the loading and saving could negate any performance benefits of using the cached layers for simple image builds
  3. The cache is locked to GitHub Actions and can't be used in other systems or on local machines

A managed solution

We built Depot to eliminate the limitations above, not only in GitHub Actions, but in all CI providers.

We manage a fleet of remote builders, supporting x86 and Arm architectures, tied to a project that you provision in Depot. These remote builders come with higher specs than traditional CI provider VMs, with 4 CPUs, 8 GB memory, and a persistent 50 GB NVMe cache disk.

You don't need to think about saving and loading the Docker layer cache, as we persist it for you across builds, automatically via a local SSD. As it's saved to a local disk, it's available instantly during builds, no need to save or load cached layers from the network. It's even shared with anyone who has access to the project, so a developer who runs a build locally can just reuse the cached layers that CI computed.

If you are interested in trying out Depot in your GitHub Actions workflow, check out our GitHub Actions integration guide.


Original Link: https://dev.to/depot/how-to-use-docker-layer-caching-in-github-actions-1o4f

Share this article:    Share on Facebook
View Full Article

Dev To

An online community for sharing and discovering great ideas, having debates, and making friends

More About this Source Visit Dev To