go-containerregistry VS image-spec

Compare go-containerregistry vs image-spec and see what are their differences.

Our great sponsors
  • WorkOS - The modern identity platform for B2B SaaS
  • InfluxDB - Power Real-Time Data Analytics at Scale
  • SaaSHub - Software Alternatives and Reviews
go-containerregistry image-spec
17 25
2,949 3,254
2.4% 3.8%
7.3 7.4
7 days ago 1 day ago
Go Go
Apache License 2.0 Apache License 2.0
The number of mentions indicates the total number of mentions that we've tracked plus the number of user suggested alternatives.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.

go-containerregistry

Posts with mentions or reviews of go-containerregistry. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-11-23.
  • A gopher’s journey to the center of container images
    5 projects | dev.to | 23 Nov 2023
    I also explored another module, go-containerregistry, in order to build images without root privileges. The approach is completely different, and we can manipulate each component of the container image separately. This can present an advantage, if you're looking for a way to fine tune things.
  • Skip build if "${CI_REGISTRY_IMAGE}:${CI_COMMIT_SHORT_SHA}" exists on container registry
    3 projects | /r/gitlab | 24 Apr 2023
    Use crane ls in a different job to check the tags in the registry. Create an artifact from its output that you evaluate in your kaniko job to check if the build should run or not.
  • Docker: We’re No Longer Sunsetting the Free Team Plan
    3 projects | news.ycombinator.com | 24 Mar 2023
    Multi-arch builds are easy to "transfer" IMHO

    crane cp docker.io/openfaas/gateway:0.10.0 ghcr.io/openfaas/gateway:0.10.0

    If you've not used it yet - do take a look. Crane doesn't pull the images into a local Docker library for re-tagging and re-pushing.

    https://github.com/google/go-containerregistry/blob/main/cmd...

  • Weekly: This Week I Learned (TWIL?) thread
    1 project | /r/kubernetes | 23 Mar 2023
    crane - tool to copy images from one repo to another - https://github.com/google/go-containerregistry/blob/main/cmd/crane/doc/crane.md
  • Dockerhub to (likely?) delete a lot of organizations.
    2 projects | /r/DataHoarder | 15 Mar 2023
  • FYI: Docker is deleting Open Source organisations
    9 projects | /r/selfhosted | 15 Mar 2023
    pretty sure the crane being referred by alex is this one: https://github.com/google/go-containerregistry/tree/main/cmd/crane
  • Docker's deleting Open Source images and here's what you need to know
    23 projects | news.ycombinator.com | 15 Mar 2023
    https://github.com/google/go-containerregistry/tree/main/cmd...

    It was recommended in this article:

  • Crafting container images without Dockerfiles
    20 projects | news.ycombinator.com | 6 Feb 2023
    This is one of my absolute favorite topics. Pardon me while I rant and self-promote :D

    Dockerfiles are great for flexibility, and have been a critical contributor to the adoption of Docker containers. It's very easy to take a base image, add a thing to it, and publish your version.

    Unfortunately Dockerfiles are also full of gotchas and opaque cargo-culted best practices to avoid them. Being an open-ended execution environment, it's basically impossible to tell even during the build what's being added to the image, which has downstream implications for anybody trying to get an SBOM from the image for example.

    Instead, I contribute to a number of tools to build and manage images without Dockerfiles. Each of them are less featureful than Dockerfiles, but being more constrained in what they can do, you can get a lot more visibility into what they're doing, since they're not able to do "whatever the user wants".

    1. https://github.com/google/go-containerregistry is a Go module to interact with images in the registry and in tarballs and layouts, in the local docker daemon. You can append layers, squash layers, modify metadata, etc.

    2. crane is a CLI that uses the above (in the same repo) to make many of the same modifications from the commandline. `crane append` for instance adds a layer containing some contents to an image, entirely in the registry, without even pulling the base image.

    3. ko (https://ko.build) is a tool to build Go applications into images without Dockerfiles or Docker at all. It runs `go build`, appends that binary on top of a base image, and pushes it directly to the registry. It generates an SBOM declaring what Go modules went into the app it put into the image, since that's all it can do.

    4. apko (https://apko.dev) is a tool to assemble an image from pre-built apks, without Docker. It's capable of producing "distroless" images easily with config in YAML. It generates an SBOM declaring exactly what apks it put in the image, since that's all it can do.

    Bazel's rules_docker is another contender in the space, and GCP's distroless images use it to place Debian .debs into an image. Apko is its spiritual successor, and uses YAML instead of Bazel's own config language, which makes it a lot easier to adopt and use (IMO), with all of the same benefits.

    I'm excited to see more folks realizing that Dockerfiles aren't always necessary, and can sometimes make your life harder. I'm extra excited to see more tools and tutorials digging into the details of how container images work, and preaching the gospel that they can be built and modified using existing tooling and relatively simple libraries. Excellent article!

  • ImagePullPolicy: IfNotPresent - (image doesn’t exist in repo) - Is it possible to pull the micro service image from an EKS node and then push to repo?
    3 projects | /r/kubernetes | 13 Sep 2022
    Look at using tools like skopeo or crane
  • Containerd... Do I use Docker to build the container image? I miss the Docker Shim
    5 projects | /r/kubernetes | 25 Jun 2022
    Pretty much any tool works: docker, podman, kaniko, crane(if you're brave), ko... list goes on.

image-spec

Posts with mentions or reviews of image-spec. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2024-01-08.
  • Understanding Buildpacks in Cloud Native Buildpacks
    1 project | dev.to | 22 Apr 2024
    A buildpack is a software, designed to transform application source code into executable (OCI) images that can run on a variety of cloud platforms. At its core, a buildpack is a directory that includes a specific file named buildpack.toml. This file contains metadata and configuration details that dictate how the buildpack should behave. Buildpacks in simple terms, is a set of standards defining how the different steps that are required to build a compliant container image can be automated. Using those standards, there are projects that have been built round enabling that using an CLI or an API. The most common way of doing that is through the Cloud Native Buildpacks' Pack project. Pack is a CLI command that can run in the same system the developers are using to actually go through creating a Dockerfile.
  • Dive: A tool for exploring a Docker image, layer contents and more
    4 projects | news.ycombinator.com | 8 Jan 2024
    Eventually, once zstd support gets fully supported, and tiny gzip compression windows are not a limitation, then compressing a full layer would almost certainly have a better ratio over several smaller layers

    https://github.com/opencontainers/image-spec/issues/803

  • Homelab advice
    1 project | /r/kubernetes | 4 Jun 2023
  • Containers - entre historia y runtimes
    3 projects | dev.to | 26 Apr 2023
  • Is labelling best practice?
    1 project | /r/docker | 9 Jan 2023
    Please note that label-schema has been superseded by https://github.com/opencontainers/image-spec/blob/main/annotations.md<^
  • Pushing container images to GitHub Container Registry with GitHub Actions
    3 projects | dev.to | 1 Dec 2022
    GitHub Container Registry stores container images within your organization or personal account, and allows you to associate an image with a repository. It currently supports both the Docker Image Manifest V2, Schema 2 and Open Container Initiative (OCI) specifications.
  • The cloud-agnostic-architecture illusion
    5 projects | dev.to | 19 Aug 2022
    We build all services as containerized workloads, i.e., OCI images - sometimes called Docker images. We deploy these to the Kubernetes product offered by the cloud vendor. Whenever we need some capability, containers are the answer. This insulates our applications from the vendor. In principle, we could switch providers as long as Kubernetes is available.
  • Containerd... Do I use Docker to build the container image? I miss the Docker Shim
    5 projects | /r/kubernetes | 25 Jun 2022
    Build images with anything that makes OCI compliant images, push, and profit.
  • Opensource Server Hosting/Management Web Panel
    3 projects | /r/admincraft | 22 Jun 2022
    it's funny that you mention this because it is actually the thing that is next on my agenda for the image, as you can probably see already I bake in OCI image annotations in our image, which is great for including some core pieces of meta data. In addition to this though I will soon be including custom labels for Base64 encoded YAMLs for Kubernetes deployments using this image. I will look at including helm configuration as well. Then it should be just as easy as: $ docker pull registry.gitlab.com/crafty-controller/crafty-4:latest $ docker image inspect registry.gitlab.com/crafty-controller/crafty-4:latest | jq -r ".[].Config.Labels.\"org.arcadiatech.crafty.k8s.deployment\"" | base64 -d | kubectl apply -f -
  • My director is mad that I accepted another internal position for a 26% raise when he was told he could only give me a 10%
    6 projects | /r/antiwork | 15 May 2022
    They still don't do anything really of substance, they're just gateways to their vendor's world - booking systems, payment systems, etc. You learn those as you go along. Yes, as a potential employee, you need to be able to tick those boxes on your CV, but if you understand the underlying technology, it's mostly a matter of booking your own AWS or Azure server for $5-10 a month for a few weeks, and fooling around. (Docker is a bit different in the sense that they were the first to popularize today's de-facto container image standard, the "Docker container", which has since been accepted as a proper standard and renamed to "OCI image format"; but at the end of the day, at this point in time, Docker in itself is still just a company out for the money, and the multi-GB installation of their product can, for the essential functionality part, be replaced by a few hundred lines of Bash code. The cool boys today don't use Docker, they use [Podman(https://podman.io/), which is essentially a much more lightweight drop-in replacement ;-) )

What are some alternatives?

When comparing go-containerregistry and image-spec you can also consider the following projects:

skopeo - Work with remote images registries - retrieving information, images, signing content

regclient - Docker and OCI Registry Client in Go and tooling using those libraries.

ovh-ipxe-customer-script - Boot OVH server with your own iPXE script

container-diff - container-diff: Diff your Docker containers

distroless - 🥑 Language focused docker images, minus the operating system.

gcr-cleaner - Delete untagged image refs in Google Container Registry or Artifact Registry

flyctl - Command line tools for fly.io services

docker-tools - This is a repo to house some common tools for our various docker repos.

dive - A tool for exploring each layer in a docker image

containerd - An open and reliable container runtime

tcmalloc