When deploying the web app, which of the following are valid container image sources?

Posted by: Pdfprep Category: AZ-104 Tags: , ,

You are deploying a containerized web application in Azure.

When deploying the web app, which of the following are valid container image sources?
A . Virtual machine
B . Docker hub
C . ACR
D . On-premises

Answer: B,C

Explanation:

When you create a web app from a Docker image, you configure the following properties:

-The registry that contains the image. The registry can be Docker Hub, Azure Container Registry (ACR), or some other private registry.

– The image: This item is the name of the repository.

– The tag: This item indicates which version of the image to use from the repository. By convention, the most recent version is given the tag latest when it’s built.

– Startup File: This item is the name of an executable file or a command to be run when the image is loaded. It’s equivalent to the command that you can supply to Docker when running an image from the command line by using docker run. If you’re deploying a ready-to-run, containerized app that already has the ENTRYPOINT and/or COMMAND values configured, you don’t need to fill this in.

Reference: https://docs.microsoft.com/en-us/learn/modules/deploy-run-container-app-service/4-deploy-web-app

Leave a Reply

Your email address will not be published.