basetenlabs/go-containerregistry
forked from google/go-containerregistry
Captured source
source ↗basetenlabs/go-containerregistry
Description: Go library and CLIs for working with container registries
License: Apache-2.0
Stars: 0
Forks: 0
Open issues: 0
Created: 2026-06-30T17:21:13Z
Pushed: 2026-06-24T17:25:15Z
Default branch: main
Fork: yes
Parent repository: google/go-containerregistry
Archived: no
README:
go-containerregistry
  
Introduction
This is a golang library for working with container registries. It's largely based on the Python library of the same name.
The following diagram shows the main types that this library handles. 
Philosophy
The overarching design philosophy of this library is to define interfaces that present an immutable view of resources (e.g. `Image`, `Layer`, `ImageIndex`), which can be backed by a variety of medium (e.g. [registry](./pkg/v1/remote/README.md), [tarball](./pkg/v1/tarball/README.md), [daemon](./pkg/v1/daemon/README.md), ...).
To complement these immutable views, we support functional mutations that produce new immutable views of the resulting resource (e.g. [mutate](./pkg/v1/mutate/README.md)). The end goal is to provide a set of versatile primitives that can compose to do extraordinarily powerful things efficiently and easily.
Both the resource views and mutations may be lazy, eager, memoizing, etc, and most are optimized for common paths based on the tooling we have seen in the wild (e.g. writing new images from disk to the registry as a compressed tarball).
v1.Image
Sources
Sinks
v1.ImageIndex
Sources
Sinks
v1.Layer
Sources
Sinks
Overview
mutate
The simplest use for these libraries is to read from one source and write to another.
For example,
crane pullisremote.Image -> tarball.Write,crane pushistarball.Image -> remote.Write,crane cpisremote.Image -> remote.Write.
However, often you actually want to _change something_ about an image. This is the purpose of the [mutate](pkg/v1/mutate) package, which exposes some commonly useful things to change about an image.
partial
If you're trying to use this library with a different source or sink than it already supports, it can be somewhat cumbersome. The Image and Layer interfaces are pretty wide, with a lot of redundant information. This is somewhat by design, because we want to expose this information as efficiently as possible where we can, but again it is a pain to implement yourself.
The purpose of the [partial](pkg/v1/partial) package is to make implementing a v1.Image much easier, by filling in all the derived accessors for you if you implement a minimal subset of v1.Image.
transport
You might think our abstractions are bad and you just want to authenticate and send requests to a registry.
This is the purpose of the [transport](pkg/v1/remote/transport) and [authn](pkg/authn) packages.
Tools
This repo hosts some tools built on top of the library.
crane
[crane](cmd/crane/README.md) is a tool for interacting with remote images and registries.
gcrane
[gcrane](cmd/gcrane/README.md) is a GCR-specific variant of crane that has richer output for the ls subcommand and some basic garbage collection support.
krane
[krane](cmd/krane/README.md) is a drop-in replacement for crane that supports common Kubernetes-based workload identity mechanisms using [k8schain](#k8schain) as a fallback to traditional authentication mechanisms.
k8schain
[k8schain](pkg/authn/k8schain/README.md) implements the authentication semantics used by kubelets in a way that is easily consumable by this library.
k8schain is...
Excerpt shown — open the source for the full document.
Notability
notability 2.0/10Routine fork with no notable AI advancement or traction.