As containers become more and more popular, proper management of their hubs and monitoring actions is required to ensure your systems are working flawlessly. In Azure, you can very easily create your own registry for storing your images using ACR.
In this section, we will try to implement seamless integration between ACR and Azure Event Grid to see what kind of functionalities it offers.
We are covering ACR in response to the growing popularity of containerized applications and systems backed by Docker and Kubernetes. In the simplest scenarios, you could host your container images using shared galleries such as Docker Hub. The downside of such a solution is a third-party dependency, no performance guarantees, and integration options. This is why many companies decide to host their own container registries. An option would be also to use a registry offered by your cloud provider (such as ACR from Microsoft).
When working with modern systems that...