title | description | services | documentationcenter | author | manager | editor | tags | keywords | ms.assetid | ms.service | ms.devlang | ms.topic | ms.tgt_pltfrm | ms.workload | ms.date | ms.author | ms.custom |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Run containerized tasks in Azure Container Instances |
Learn how to use Azure Container Instances to execute tasks that run to completion, such as in build, test, or image rendering jobs. |
container-instances |
mmacy |
timlt |
container-instances |
na |
article |
na |
na |
11/16/2017 |
marsma |
The ease and speed of deploying containers in Azure Container Instances provides a compelling platform for executing run-once tasks like build, test, and image rendering in a container instance.
With a configurable restart policy, you can specify that your containers are stopped when their processes have completed. Because container instances are billed by the second, you're charged only for the compute resources used while the container executing your task is running.
The examples presented in this article use the Azure CLI. You must have Azure CLI version 2.0.21 or greater installed locally, or use the CLI in the Azure Cloud Shell.
When you create a container in Azure Container Instances, you can specify one of three restart policy settings.
Restart policy | Description |
---|---|
Always |
Containers in the container group are always restarted. This is the default setting applied when no restart policy is specified at container creation. |
Never |
Containers in the container group are never restarted. The containers run at most once. |
OnFailure |
Containers in the container group are restarted only when the process executed in the container fails (when it terminates with a nonzero exit code). The containers are run at least once. |
How you specify a restart policy depends on how you create your container instances, such as with the Azure CLI, Azure PowerShell cmdlets, or in the Azure portal. In the Azure CLI, specify the --restart-policy
parameter when you call az container create.
az container create \
--resource-group myResourceGroup \
--name mycontainer \
--image mycontainerimage \
--restart-policy OnFailure
To see the restart policy in action, create a container instance from the microsoft/aci-wordcount image, and specify the OnFailure
restart policy. This example container runs a Python script that, by default, analyzes the text of Shakespeare's Hamlet, writes the 10 most common words to STDOUT, and then exits.
Run the example container with the following az container create command:
az container create \
--resource-group myResourceGroup \
--name mycontainer \
--image microsoft/aci-wordcount:latest \
--restart-policy OnFailure
Azure Container Instances starts the container, and then stops it when its application (or script, in this case) exits. When Azure Container Instances stops a container whose restart policy is Never
or OnFailure
, the container's status is set to Terminated. You can check a container's status with the az container show command:
az container show --resource-group myResourceGroup --name mycontainer --query containers[0].instanceView.currentState.state
Example output:
"Terminated"
Once the example container's status shows Terminated, you can see its task output by viewing the container logs. Run the az container logs command to view the script's output:
az container logs --resource-group myResourceGroup --name mycontainer
Output:
[('the', 990),
('and', 702),
('of', 628),
('to', 610),
('I', 544),
('you', 495),
('a', 453),
('my', 441),
('in', 399),
('HAMLET', 386)]
This example shows the output that the script sent to STDOUT. Your containerized tasks, however, might instead write their output to persistent storage for later retrieval. For example, to an Azure file share.
When you create a container instance, you can set its environment variables, as well as specify a custom command line to execute when the container is started. You can use these settings in your batch jobs to prepare each container with task-specific configuration.
Set environment variables in your container to provide dynamic configuration of the application or script run by the container. This is similar to the --env
command-line argument to docker run
.
For example, you can modify the behavior of the script in the example container by specifying the following environment variables when you create the container instance:
NumWords: The number of words sent to STDOUT.
MinLength: The minimum number of characters in a word for it to be counted. A higher number ignores common words like "of" and "the."
az container create \
--resource-group myResourceGroup \
--name mycontainer2 \
--image microsoft/aci-wordcount:latest \
--restart-policy OnFailure \
--environment-variables NumWords=5 MinLength=8
By specifying NumWords=5
and MinLength=8
for the container's environment variables, the container logs should display different output. Once the container status shows as Terminated (use az container show
to check its status), display its logs to see the new output:
az container logs --resource-group myResourceGroup --name mycontainer2
Output:
[('CLAUDIUS', 120),
('POLONIUS', 113),
('GERTRUDE', 82),
('ROSENCRANTZ', 69),
('GUILDENSTERN', 54)]
Specify a command line when you create a container instance to override the command line baked into the container image. This is similar to the --entrypoint
command-line argument to docker run
.
For instance, you can have the example container analyze text other than Hamlet by specifying a different command line. The Python script executed by the container, wordcount.py, accepts a URL as an argument, and will process that page's content instead of the default.
For example, to determine the top 3 five-letter words in Romeo and Juliet:
az container create \
--resource-group myResourceGroup \
--name mycontainer3 \
--image microsoft/aci-wordcount:latest \
--restart-policy OnFailure \
--environment-variables NumWords=3 MinLength=5 \
--command-line "python wordcount.py http://shakespeare.mit.edu/romeo_juliet/full.html"
Again, once the container is Terminated, view the output by showing the container's logs:
az container logs --resource-group myResourceGroup --name mycontainer3
Output:
[('ROMEO', 177), ('JULIET', 134), ('CAPULET', 119)]
For details on how to persist the output of your containers that run to completion, see Mounting an Azure file share with Azure Container Instances.