- Docker on Windows
- Elton Stoneman
- 297字
- 2021-07-02 12:47:52
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 which 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 registry is Docker Hub, which is the public registry hosted by Docker, but other companies also host their own registries to distribute their own software:
- Docker Hub is the default registry, and it has become hugely popular for open source projects, for commercial software, and for teams working on private projects. There are hundreds of thousands of images stored on Docker Hub, which serves billions of pull requests every year. You can configure Docker Hub images to be public or private. It's suitable for internal products, for which you can limit access to images. You can set up Docker Hub to automatically build images from Dockerfiles stored in GitHub – currently, this is supported only for Linux-based images, but Windows support should be coming soon.
- Microsoft Container Registry (MCR) is where Microsoft host their own Docker images for Windows Server Core and Nano Server, along with images preconfigured with the .NET Framework. Microsoft's Docker images are free to download and use. They only run on Windows machines, which is where the Windows licensing is applied.
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. You could use Docker Hub, or you could run your own private registry. The image is then available for other users to run your application in a container.
- Linux系統(tǒng)文件安全實戰(zhàn)全攻略
- Linux實戰(zhàn)
- 嵌入式Linux系統(tǒng)開發(fā):基于Yocto Project
- 開源安全運維平臺OSSIM疑難解析:入門篇
- 混沌工程實戰(zhàn):手把手教你實現(xiàn)系統(tǒng)穩(wěn)定性
- 計算機系統(tǒng)開發(fā)與優(yōu)化實戰(zhàn)
- 從實踐中學(xué)習(xí)Kali Linux無線網(wǎng)絡(luò)滲透測試
- 云原生落地:產(chǎn)品、架構(gòu)與商業(yè)模式
- Java EE 7 Developer Handbook
- Agile IT Security Implementation Methodology
- Learn Quantum Computing with Python and IBM Quantum Experience
- Getting Started with Citrix XenApp 6.5
- Azure Serverless Computing Cookbook
- Linux從入門到精通
- Android Telephony原理解析與開發(fā)指南