From the course: Docker for Data Engineers

Unlock this course with a free trial

Join today to access over 24,900 courses taught by industry experts.

Deploying a container to Azure Container Instances

Deploying a container to Azure Container Instances - Docker Tutorial

From the course: Docker for Data Engineers

Deploying a container to Azure Container Instances

You can confirm using the command line that the image is indeed available in our loonyacr. Simply run the command az acr repository list --name loonyacr --output in the table format. And here you can see our repository, bank_customer_churn_pred_model. We know we have a repository and an image with the same name. Let's view the tags associated with this image using the az acr repository show-tags command. We have just a single image tag, version 1.0. Now our next step is to deploy a containerized application running on Azure Container Instances using the image that we have registered with this loonyacr. In order to access this image in this repository, we need to have access to the credentials of this repository. Now in order to find out where the credentials are, head over to loonyacr, and on the left under settings, you should find an option for access keys. Select access keys, and here you'll find the password to be able to access images from this container registry. Now you need to…

Contents