No description
  • Go 99.2%
  • Shell 0.8%
Find a file
Joel Kamp b4625a059f
Merge pull request #1 from docker/dependabot/go_modules/github.com/docker/docker-25.0.6incompatible
Bump github.com/docker/docker from 24.0.0+incompatible to 25.0.6+incompatible
2024-08-08 09:50:31 -05:00
.github fix: goreleaser config (#1764) 2023-12-02 09:25:26 -05:00
.ko/debug Revert "Cleanup: Switch the debug image to cgr.dev/chainguard/busybox (#1638)" (#1641) 2023-04-08 21:01:39 +00:00
cmd deps: bump docker dep (#1991) 2024-08-06 09:18:38 -07:00
hack Fix various lints (#1507) 2022-12-12 11:50:47 -08:00
images Update terms (#925) 2021-01-28 12:05:29 -08:00
internal Add remote.Reuse for Pusher/Puller (#1672) 2023-04-25 09:16:45 -07:00
pkg deps: bump docker dep (#1991) 2024-08-06 09:18:38 -07:00
vendor Bump github.com/docker/docker 2024-08-08 13:18:51 +00:00
.codecov.yaml Rename codecov.yml (#956) 2021-03-04 15:38:10 -05:00
.gitattributes feat: implement gc command (#1811) 2023-11-29 15:37:11 -05:00
.gitignore fix: goreleaser config (#1764) 2023-12-02 09:25:26 -05:00
.golangci.yaml crane: add serve subcommand (#1586) 2023-03-09 01:15:46 +00:00
.goreleaser.yml fix: goreleaser config (#1764) 2023-12-02 09:25:26 -05:00
.wokeignore bump deps using ./hack/bump-deps.sh (#1389) 2022-07-13 16:47:01 -04:00
cloudbuild.yaml release: use ko 0.13.0 to build images (#1607) 2023-03-20 08:17:54 -07:00
CONTRIBUTING.md update crane mutate annotation/label args to allow commas in label values (#1178) 2021-11-15 12:00:09 -05:00
go.mod Bump github.com/docker/docker 2024-08-08 13:18:51 +00:00
go.sum Bump github.com/docker/docker 2024-08-08 13:18:51 +00:00
LICENSE Initial export from monorepo 2018-03-14 16:39:04 -07:00
README.md deprecate estargz (#1660) 2023-04-19 09:09:03 -07:00
SECURITY.md Add SECURITY.md (#1031) 2021-06-02 15:03:17 -07:00

go-containerregistry

GitHub Actions Build Status GoDoc Code Coverage

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. OCI image representation

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, tarball, daemon, ...).

To complement these immutable views, we support functional mutations that produce new immutable views of the resulting resource (e.g. mutate). 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).

Experiments

Over time, we will add new functionality under experimental environment variables listed here.

Env Var Value(s) What is does
GGCR_EXPERIMENT_ESTARGZ "1" ⚠️DEPRECATED⚠️: When enabled this experiment will direct tarball.LayerFromOpener to emit estargz compatible layers, which enable them to be lazily loaded by an appropriately configured containerd.

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 pull is remote.Image -> tarball.Write,
  • crane push is tarball.Image -> remote.Write,
  • crane cp is remote.Image -> remote.Write.

However, often you actually want to change something about an image. This is the purpose of the 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 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 and authn packages.

Tools

This repo hosts some tools built on top of the library.

crane

crane is a tool for interacting with remote images and registries.

gcrane

gcrane is a GCR-specific variant of crane that has richer output for the ls subcommand and some basic garbage collection support.

krane

krane is a drop-in replacement for crane that supports common Kubernetes-based workload identity mechanisms using k8schain as a fallback to traditional authentication mechanisms.

k8schain

k8schain implements the authentication semantics used by kubelets in a way that is easily consumable by this library.

k8schain is not a standalone tool, but it is linked here for visibility.

Emeritus: ko

This tool was originally developed in this repo but has since been moved to its own repo.