- Docker on Windows
- Elton Stoneman
- 250字
- 2021-07-02 19:53:16
Image registries
A registry is a storage server for Docker images. Registries can be public or private, and there are free public registries and commercial registry servers that allow fine-grained access control for images. Images are stored with a unique name within the registry. Anyone with access can upload an image by running docker image push and download an image by running docker image pull.
The most popular registries are the public ones hosted by Docker:
- Docker Hub is the original registry, which has become hugely popular for open source projects in the Linux ecosystem. It has over 600,000 images stored and has hosted over 12 billion image pulls.
- Docker Cloud is where you store images you build yourself, and you can configure images to be public or private. It's suitable for internal products, where you can limit access to the images. You can set up Docker Cloud to automatically build images from Dockerfiles stored in GitHub—currently, this is supported only for Linux-based images, but Windows support is coming soon.
- Docker Store is where you get commercial software, pre-packaged as Docker images. Vendors are increasingly supporting Docker as a platform for their own applications, and you will find software from Microsoft, Oracle, HPE, and more on Docker Store.
In a typical workflow, you might build images as part of a CI pipeline and push them to a registry if all the tests pass. The image is then available for other users to run your application in a container.
推薦閱讀
- JSP網絡編程(學習筆記)
- Raspberry Pi for Python Programmers Cookbook(Second Edition)
- Building Modern Web Applications Using Angular
- Dynamics 365 Application Development
- Cocos2d-x游戲開發:手把手教你Lua語言的編程方法
- Hands-On Image Processing with Python
- C語言程序設計基礎與實驗指導
- INSTANT Weka How-to
- 信息安全技術
- 用戶體驗增長:數字化·智能化·綠色化
- Swift 4從零到精通iOS開發
- OpenStack Networking Essentials
- Kubernetes進階實戰
- 軟件測試綜合技術
- Python網絡爬蟲技術與應用