Configuring Azure Container Instances

The ACI service by Microsoft Azure provides us with a fast and easy way to run containers in the cloud without worrying about the management part of virtual machines or having to learn about new tools. This service is designed to be as quick as possible and ease the process of getting a container up and running in the cloud. Furthermore, it is possible to launch a container by executing a simple Azure CLI command, such as the following:

az container create --resource-group myResourceGroup \                    --name cache-container \                    --image redis:alpine \                    --cpu 1 \                    --memory 1 \                    --dns-name-label cache-container \                    --ports 6379 

The ACI service is the ideal service for testing and running containers in Azure. Hence, the ACI ...

Get Hands-On RESTful Web Services with ASP.NET Core 3 now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.