Containers (1 / 60): Which command is used to deploy an image in Azure Container Instances (ACI)?
Answer:
az container create
is the correct command to deploy a container in Azure Container Instances (ACI)
az container push
is not a valid Azure CLI command.
az container export
exports a container group in yaml format.
docker build
builds a Docker image from a Dockerfile, not related to deploying a container.