Go to file
Derek McGowan 45983af554
Merge pull request #2773 from dmcgowan/2.6-add-goarm-flag
[release/2.6] Add GOARM flag to dockerfile
2018-11-29 15:14:41 -08:00
Godeps Merge pull request #2038 from spacexnice/master 2016-11-10 14:44:32 -08:00
cmd Load the middleware/redirect driver 2016-07-19 15:37:10 +01:00
configuration Update registry server to support repository class 2016-12-20 15:42:12 -08:00
context Fix vet errors with go 1.7 2016-07-18 13:41:19 -07:00
contrib Update certificates 2018-05-22 14:41:01 -07:00
digest Typo fixes in comments 2016-02-10 16:26:29 -08:00
docs Fix keyword format for downstream docs 2017-11-21 09:26:50 -08:00
health fix typos 2016-06-02 23:03:27 +08:00
manifest switch to v1 and remove .image 2016-11-10 11:39:15 -08:00
notifications notifications: fix expvar for Go 1.7 2018-04-05 13:49:04 +02:00
project Adds pre-commit hook, hook config script, and a README 2014-12-15 18:09:11 -08:00
reference Add trim name method helper to create name only references 2016-11-10 14:46:04 -08:00
registry ignore path not found error when look up tags 2018-04-05 13:49:04 +02:00
testutil testutil, storage: use math/rand.Read where possible 2016-08-10 14:26:12 -07:00
uuid Only enable uuid generation warning when using registry handlers 2015-07-30 14:27:07 -07:00
vendor Merge pull request #2038 from spacexnice/master 2016-11-10 14:44:32 -08:00
version release: prepare for 2.6.2 release 2017-07-20 14:12:13 -07:00
.gitignore Improve context package 2015-04-01 15:40:21 -07:00
.mailmap release: prepare for 2.6.2 release 2017-07-20 14:12:13 -07:00
AUTHORS release: prepare for 2.6.2 release 2017-07-20 14:12:13 -07:00
BUILDING.md Fix broken doc links 2016-10-18 21:31:08 +09:00
CHANGELOG.md Update changelog for 2.6.1 2017-04-05 16:18:07 -07:00
CONTRIBUTING.md Removes ceph rados driver in favor of Swift API gateway support 2016-03-10 16:49:08 -08:00
Dockerfile Add GOARM flag to dockerfile 2018-11-28 13:51:51 -08:00
LICENSE Initial commit 2014-12-22 15:49:26 -08:00
MAINTAINERS Prepare for the release. 2016-06-13 16:03:16 -07:00
Makefile Add targets for Makefile 2016-11-01 17:48:25 +08:00
README.md Fix broken doc links 2016-10-18 21:31:08 +09:00
RELEASE-CHECKLIST.md Document registry release process 2016-11-07 12:48:55 -08:00
ROADMAP.md fix typos 2016-06-02 23:03:27 +08:00
blobs.go Provide stat descriptor for Create method during cross-repo mount (#1857) 2016-08-01 19:07:11 -07:00
circle.yml Bump to go1.7 2016-10-31 13:05:03 -07:00
coverpkg.sh Fix codecov following vendor 2016-03-24 10:30:14 -07:00
doc.go fix some typos in source comments 2015-04-17 12:39:52 +00:00
errors.go Defined ErrAccessDenied error 2016-02-22 21:12:59 +01:00
manifests.go manifest: references should cover all children 2016-10-18 11:43:33 -07:00
registry.go Update documentation and examples in notifications.md 2016-03-23 15:51:32 -07:00
tags.go Implementation of the Manifest Service API refactor. 2015-12-17 17:09:14 -08:00

README.md

Distribution

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

This repository's main product is 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] (https://github.com/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.