{"id":37196703,"url":"https://github.com/yunify/distribution","last_synced_at":"2026-01-14T22:52:59.919Z","repository":{"id":57595293,"uuid":"81520042","full_name":"yunify/distribution","owner":"yunify","description":"The Docker toolset to pack, ship, store, and deliver content","archived":false,"fork":true,"pushed_at":"2018-10-09T09:58:50.000Z","size":13016,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":9,"default_branch":"master","last_synced_at":"2024-06-20T11:55:59.094Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Go","has_issues":false,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":"distribution/distribution","license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/yunify.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2017-02-10T02:59:59.000Z","updated_at":"2024-06-20T11:55:59.095Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/yunify/distribution","commit_stats":null,"previous_names":[],"tags_count":46,"template":false,"template_full_name":null,"purl":"pkg:github/yunify/distribution","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/yunify%2Fdistribution","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/yunify%2Fdistribution/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/yunify%2Fdistribution/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/yunify%2Fdistribution/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/yunify","download_url":"https://codeload.github.com/yunify/distribution/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/yunify%2Fdistribution/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28437087,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-14T22:37:52.437Z","status":"ssl_error","status_checked_at":"2026-01-14T22:37:31.496Z","response_time":107,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2026-01-14T22:52:59.131Z","updated_at":"2026-01-14T22:52:59.906Z","avatar_url":"https://github.com/yunify.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Distribution\n\nThe Docker toolset to pack, ship, store, and deliver content.\n\nThis repository's main product is the Docker Registry 2.0 implementation\nfor storing and distributing Docker images. It supersedes the\n[docker/docker-registry](https://github.com/docker/docker-registry)\nproject with a new API design, focused around security and performance.\n\n\u003cimg src=\"https://www.docker.com/sites/default/files/oyster-registry-3.png\" width=200px/\u003e\n\n[![Circle CI](https://circleci.com/gh/docker/distribution/tree/master.svg?style=svg)](https://circleci.com/gh/docker/distribution/tree/master)\n[![GoDoc](https://godoc.org/github.com/docker/distribution?status.svg)](https://godoc.org/github.com/docker/distribution)\n\nThis repository contains the following components:\n\n|**Component**       |Description                                                                                                                                                                                         |\n|--------------------|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|\n| **registry**       | An implementation of the [Docker Registry HTTP API V2](docs/spec/api.md) for use with docker 1.6+.                                                                                                  |\n| **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**. |\n| **specifications** | _Distribution_ related specifications are available in [docs/spec](docs/spec)                                                                                                                        |\n| **documentation**  | Docker's full documentation set is available at [docs.docker.com](https://docs.docker.com). This repository [contains the subset](docs/) related just to the registry.                                                                                                                                          |\n\n### How does this integrate with Docker engine?\n\nThis project should provide an implementation to a V2 API for use in the [Docker\ncore project](https://github.com/docker/docker). The API should be embeddable\nand simplify the process of securely pulling and pushing content from `docker`\ndaemons.\n\n### What are the long term goals of the Distribution project?\n\nThe _Distribution_ project has the further long term goal of providing a\nsecure tool chain for distributing content. The specifications, APIs and tools\nshould be as useful with Docker as they are without.\n\nOur goal is to design a professional grade and extensible content distribution\nsystem that allow users to:\n\n* Enjoy an efficient, secured and reliable way to store, manage, package and\n  exchange content\n* Hack/roll their own on top of healthy open-source components\n* Implement their own home made solution through good specs, and solid\n  extensions mechanism.\n\n## More about Registry 2.0\n\nThe new registry implementation provides the following benefits:\n\n- faster push and pull\n- new, more efficient implementation\n- simplified deployment\n- pluggable storage backend\n- webhook notifications\n\nFor information on upcoming functionality, please see [ROADMAP.md](ROADMAP.md).\n\n### Who needs to deploy a registry?\n\nBy default, Docker users pull images from Docker's public registry instance.\n[Installing Docker](https://docs.docker.com/engine/installation/) gives users this\nability. Users can also push images to a repository on Docker's public registry,\nif they have a [Docker Hub](https://hub.docker.com/) account.\n\nFor some users and even companies, this default behavior is sufficient. For\nothers, it is not.\n\nFor example, users with their own software products may want to maintain a\nregistry for private, company images. Also, you may wish to deploy your own\nimage repository for images used to test or in continuous integration. For these\nuse cases and others, [deploying your own registry instance](https://github.com/docker/docker.github.io/blob/master/registry/deploying.md)\nmay be the better choice.\n\n### Migration to Registry 2.0\n\nFor those who have previously deployed their own registry based on the Registry\n1.0 implementation and wish to deploy a Registry 2.0 while retaining images,\ndata migration is required. A tool to assist with migration efforts has been\ncreated. For more information see [docker/migrator](https://github.com/docker/migrator).\n\n## Contribute\n\nPlease see [CONTRIBUTING.md](CONTRIBUTING.md) for details on how to contribute\nissues, fixes, and patches to this project. If you are contributing code, see\nthe instructions for [building a development environment](BUILDING.md).\n\n## Support\n\nIf any issues are encountered while using the _Distribution_ project, several\navenues are available for support:\n\n\u003ctable\u003e\n\u003ctr\u003e\n\t\u003cth align=\"left\"\u003e\n\tIRC\n\t\u003c/th\u003e\n\t\u003ctd\u003e\n\t#docker-distribution on FreeNode\n\t\u003c/td\u003e\n\u003c/tr\u003e\n\u003ctr\u003e\n\t\u003cth align=\"left\"\u003e\n\tIssue Tracker\n\t\u003c/th\u003e\n\t\u003ctd\u003e\n\tgithub.com/docker/distribution/issues\n\t\u003c/td\u003e\n\u003c/tr\u003e\n\u003ctr\u003e\n\t\u003cth align=\"left\"\u003e\n\tGoogle Groups\n\t\u003c/th\u003e\n\t\u003ctd\u003e\n\thttps://groups.google.com/a/dockerproject.org/forum/#!forum/distribution\n\t\u003c/td\u003e\n\u003c/tr\u003e\n\u003ctr\u003e\n\t\u003cth align=\"left\"\u003e\n\tMailing List\n\t\u003c/th\u003e\n\t\u003ctd\u003e\n\tdocker@dockerproject.org\n\t\u003c/td\u003e\n\u003c/tr\u003e\n\u003c/table\u003e\n\n\n## License\n\nThis project is distributed under [Apache License, Version 2.0](LICENSE).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fyunify%2Fdistribution","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fyunify%2Fdistribution","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fyunify%2Fdistribution/lists"}