2015-04-02 15:11:19 +00:00
# Distribution
2014-12-22 23:49:26 +00:00
2014-12-24 01:48:14 +00:00
The Docker toolset to pack, ship, store, and deliver content.
2015-04-19 00:06:51 +00:00
This repository's main product is the Docker Registry 2.0 implementation
2015-11-21 01:18:25 +00:00
for storing and distributing Docker images. It supersedes the
[docker/docker-registry ](https://github.com/docker/docker-registry )
project with a new API design, focused around security and performance.
2015-03-03 07:33:02 +00:00
2015-07-21 19:41:56 +00:00
< img src = "https://www.docker.com/sites/default/files/oyster-registry-3.png" width = 200px/ >
2015-11-04 20:48:18 +00:00
[![Circle CI ](https://circleci.com/gh/docker/distribution/tree/master.svg?style=svg )](https://circleci.com/gh/docker/distribution/tree/master)
[![GoDoc ](https://godoc.org/github.com/docker/distribution?status.svg )](https://godoc.org/github.com/docker/distribution)
2015-03-03 07:33:02 +00:00
This repository contains the following components:
2015-04-02 15:11:19 +00:00
|**Component** |Description |
|--------------------|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
2015-04-16 09:57:02 +00:00
| **registry** | An implementation of the [Docker Registry HTTP API V2 ](docs/spec/api.md ) for use with docker 1.6+. |
2015-12-21 00:22:01 +00:00
| **libraries** | A rich set of libraries for interacting with,distribution components. Please see [godoc ](https://godoc.org/github.com/docker/distribution ) for details. **Note** : These libraries are **unstable** . |
2015-04-02 15:11:19 +00:00
| **specifications** | _Distribution_ related specifications are available in [docs/spec ](docs/spec ) |
2015-12-21 00:22:01 +00:00
| **documentation** | Docker's full documentation set is available at [docs.docker.com ](https://docs.docker.com ). This repository [contains the subset ](docs/index.md ) related just to the registry. |
2014-12-24 01:48:14 +00:00
2015-04-02 15:11:19 +00:00
### How does this integrate with Docker engine?
2014-12-24 01:48:14 +00:00
2015-04-02 15:11:19 +00:00
This project should provide an implementation to a V2 API for use in the [Docker
core project](https://github.com/docker/docker). The API should be embeddable
and simplify the process of securely pulling and pushing content from `docker`
daemons.
2014-12-24 01:48:14 +00:00
2015-03-03 07:33:02 +00:00
### What are the long term goals of the Distribution project?
2014-12-24 01:48:14 +00:00
2015-04-02 15:11:19 +00:00
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:
2014-12-24 01:48:14 +00:00
2015-03-03 07:33:02 +00:00
* Enjoy an efficient, secured and reliable way to store, manage, package and
exchange content
2014-12-24 01:48:14 +00:00
* Hack/roll their own on top of healthy open-source components
2015-03-03 07:33:02 +00:00
* Implement their own home made solution through good specs, and solid
extensions mechanism.
2014-12-24 01:48:14 +00:00
2015-04-02 15:11:19 +00:00
## More about Registry 2.0
2014-12-24 01:48:14 +00:00
2015-03-03 07:33:02 +00:00
The new registry implementation provides the following benefits:
2014-12-24 01:48:14 +00:00
2015-03-03 07:33:02 +00:00
- faster push and pull
- new, more efficient implementation
- simplified deployment
- pluggable storage backend
- webhook notifications
2014-12-24 01:48:14 +00:00
2015-03-18 05:02:11 +00:00
For information on upcoming functionality, please see [ROADMAP.md ](ROADMAP.md ).
2015-04-02 15:11:19 +00:00
### Who needs to deploy a registry?
2014-12-24 01:48:14 +00:00
2015-04-02 15:11:19 +00:00
By default, Docker users pull images from Docker's public registry instance.
2015-12-21 00:22:01 +00:00
[Installing Docker ](https://docs.docker.com/engine/installation/ ) gives users this
2015-04-02 15:11:19 +00:00
ability. Users can also push images to a repository on Docker's public registry,
if they have a [Docker Hub ](https://hub.docker.com/ ) account.
2015-03-03 07:33:02 +00:00
2015-04-02 15:11:19 +00:00
For some users and even companies, this default behavior is sufficient. For
others, it is not.
2015-03-03 07:33:02 +00:00
2015-06-11 06:50:34 +00:00
For example, users with their own software products may want to maintain a
2015-04-02 15:11:19 +00:00
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 ](docs/deploying.md )
may be the better choice.
2015-03-03 07:33:02 +00:00
2015-08-04 19:16:20 +00:00
### 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).
2015-04-02 15:11:19 +00:00
## Contribute
2015-03-03 07:33:02 +00:00
2015-04-19 00:06:51 +00:00
Please see [CONTRIBUTING.md ](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 ](docs/building.md ).
2015-03-03 07:33:02 +00:00
2015-04-02 15:11:19 +00:00
## Support
If any issues are encountered while using the _Distribution_ project, several
avenues are available for support:
< table >
< tr >
< th align = "left" >
IRC
< / th >
< td >
#docker -distribution on FreeNode
< / td >
< / tr >
< tr >
< th align = "left" >
Issue Tracker
< / th >
< td >
github.com/docker/distribution/issues
< / td >
< / tr >
< tr >
< th align = "left" >
Google Groups
< / th >
< td >
https://groups.google.com/a/dockerproject.org/forum/#!forum/distribution
< / td >
< / tr >
< tr >
< th align = "left" >
Mailing List
< / th >
< td >
docker@dockerproject.org
< / td >
< / tr >
< / table >
## License
2015-03-03 07:33:02 +00:00
This project is distributed under [Apache License, Version 2.0 ](LICENSE.md ).