kaniko/vendor/github.com/docker/distribution
Joël Pepper 0cbb7664de
fix(executor): make pax tar builds reproducible again (#2384)
In v1.8.0 (commit 7410007) kaniko switched to using the pax tar header
format for compressing image layers, since this format allows for greater
precision in recording timestamps, however this inadvertendly broke the
"--reproducible" functionality, due to an bug in the underlying
go-containerregistry dependency which did not set the additional
timestamps in the pax header when canonicalizing image layers. This
oversight has since been fixed in the dependency.

This commit bumps the google/go-containerregistry dependency to the
first commit which has fixed the bug
(v0.13.1-0.20230201183932-824efc7772b0). It also bumps the version of
cloud.google.com/go/storage to v1.29.0 to be compatible with the higher
transitive dependency.
2023-03-21 18:08:29 -04:00
..
digestset Updated vendor for exported BuildArgs 2018-05-09 11:56:32 -07:00
reference Bump go-containerregistry dependency (#2076) 2022-05-08 12:40:24 -04:00
registry/client/auth/challenge fix(executor): make pax tar builds reproducible again (#2384) 2023-03-21 18:08:29 -04:00
.gitignore fix highwayhash 2019-12-21 12:18:09 -08:00
.golangci.yml Bump go-containerregistry dependency (#2076) 2022-05-08 12:40:24 -04:00
.mailmap fix(executor): make pax tar builds reproducible again (#2384) 2023-03-21 18:08:29 -04:00
BUILDING.md fix highwayhash 2019-12-21 12:18:09 -08:00
CONTRIBUTING.md fix highwayhash 2019-12-21 12:18:09 -08:00
Dockerfile fix(executor): make pax tar builds reproducible again (#2384) 2023-03-21 18:08:29 -04:00
LICENSE Updated vendor for exported BuildArgs 2018-05-09 11:56:32 -07:00
MAINTAINERS Upgrade dependency to go-containerregistry third-party library 2020-01-26 18:55:52 +01:00
Makefile Bump go-containerregistry dependency (#2076) 2022-05-08 12:40:24 -04:00
README.md fix(executor): make pax tar builds reproducible again (#2384) 2023-03-21 18:08:29 -04:00
ROADMAP.md fix highwayhash 2019-12-21 12:18:09 -08:00
blobs.go Bump go-containerregistry dependency (#2076) 2022-05-08 12:40:24 -04:00
doc.go Updated vendor for exported BuildArgs 2018-05-09 11:56:32 -07:00
docker-bake.hcl fix(executor): make pax tar builds reproducible again (#2384) 2023-03-21 18:08:29 -04:00
errors.go Upgrade dependency to go-containerregistry third-party library 2020-01-26 18:55:52 +01:00
manifests.go Bump go-containerregistry dependency (#2076) 2022-05-08 12:40:24 -04:00
registry.go Upgrade dependency to go-containerregistry third-party library 2020-01-26 18:55:52 +01:00
tags.go Updated vendor for exported BuildArgs 2018-05-09 11:56:32 -07:00
vendor.conf Bump go-containerregistry dependency (#2076) 2022-05-08 12:40:24 -04:00

README.md

Distribution

The Docker toolset to pack, ship, store, and deliver content.

This repository provides the Docker Registry 2.0 implementation for storing and distributing Docker images. It supersedes the docker/docker-registry project with a new API design, focused around security and performance.

Circle CI GoDoc

This repository contains the following components:

Component Description
registry An implementation of the Docker Registry HTTP API V2 for use with docker 1.6+.
libraries A rich set of libraries for interacting with distribution components. Please see godoc for details. Note: These libraries are unstable.
specifications Distribution related specifications are available in docs/spec
documentation Docker's full documentation set is available at docs.docker.com. This repository contains the subset related just to the registry.

How does this integrate with Docker engine?

This project should provide an implementation to a V2 API for use in the Docker core project. The API should be embeddable and simplify the process of securely pulling and pushing content from docker daemons.

What are the long term goals of the Distribution project?

The Distribution project has the further long term goal of providing a secure tool chain for distributing content. The specifications, APIs and tools should be as useful with Docker as they are without.

Our goal is to design a professional grade and extensible content distribution system that allow users to:

  • Enjoy an efficient, secured and reliable way to store, manage, package and exchange content
  • Hack/roll their own on top of healthy open-source components
  • Implement their own home made solution through good specs, and solid extensions mechanism.

More about Registry 2.0

The new registry implementation provides the following benefits:

  • faster push and pull
  • new, more efficient implementation
  • simplified deployment
  • pluggable storage backend
  • webhook notifications

For information on upcoming functionality, please see ROADMAP.md.

Who needs to deploy a registry?

By default, Docker users pull images from Docker's public registry instance. Installing Docker gives users this ability. Users can also push images to a repository on Docker's public registry, if they have a Docker Hub account.

For some users and even companies, this default behavior is sufficient. For others, it is not.

For example, users with their own software products may want to maintain a registry for private, company images. Also, you may wish to deploy your own image repository for images used to test or in continuous integration. For these use cases and others, deploying your own registry instance may be the better choice.

Migration to Registry 2.0

For those who have previously deployed their own registry based on the Registry 1.0 implementation and wish to deploy a Registry 2.0 while retaining images, data migration is required. A tool to assist with migration efforts has been created. For more information see docker/migrator.

Contribute

Please see CONTRIBUTING.md for details on how to contribute issues, fixes, and patches to this project. If you are contributing code, see the instructions for building a development environment.

Support

If any issues are encountered while using the Distribution project, several avenues are available for support:

IRC #docker-distribution on FreeNode
Issue Tracker github.com/docker/distribution/issues
Google Groups https://groups.google.com/a/dockerproject.org/forum/#!forum/distribution
Mailing List docker@dockerproject.org

License

This project is distributed under Apache License, Version 2.0.