Managing Container Images in Azure Container Registry
By now, you should be comfortable with the concept of container images and containers. A common development workflow includes making changes to source code and building a Docker image from a Dockerfile that copies files and compiles your app, ready for a container to run from it. That built image gets pushed to a container registry, which can then be pulled from another machine or service and have a container instance created from it. Microsoft’s managed service for storing your images is called ACR, which is available in three SKUs:
- Basic: Most appropriate for lower usage scenarios, such as learning and testing environments, due to the lower storage capacity and image throughput available with this SKU
- Standard: Suitable for most production scenarios, due to the increased storage and image throughput
- Premium: Increased storage and image throughput than the other SKUs but also adds other features, such as...