You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: articles/batch/batch-docker-container-workloads.md
+1-7Lines changed: 1 addition & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,16 +2,13 @@
2
2
title: Container workloads on Azure Batch
3
3
description: Learn how to run and scale apps from container images on Azure Batch. Create a pool of compute nodes that support running container tasks.
> This article references CentOS, a Linux distribution that is nearing End Of Life (EOL) status. Please consider your use and planning accordingly. For more information, see the [CentOS End Of Life guidance](~/articles/virtual-machines/workloads/centos/centos-end-of-life.md).
14
-
15
12
Azure Batch lets you run and scale large numbers of batch computing jobs on Azure. Batch tasks can run directly on virtual machines (nodes) in a Batch pool, but you can also set up a Batch pool to run tasks in Docker-compatible containers on the nodes. This article shows you how to create a pool of compute nodes that support running container tasks, and then run container tasks on the pool.
16
13
17
14
The code examples here use the Batch .NET and Python SDKs. You can also use other Batch SDKs and tools, including the Azure portal, to create container-enabled Batch pools and to run container tasks.
@@ -86,8 +83,6 @@ without the need for a custom image.
86
83
Currently there are other images published by `microsoft-azure-batch` that support container workloads:
87
84
88
85
- Publisher: `microsoft-azure-batch`
89
-
- Offer: `centos-container`
90
-
- Offer: `centos-container-rdma` (For use exclusively on VM SKUs with Infiniband)
91
86
- Offer: `ubuntu-server-container`
92
87
- Offer: `ubuntu-server-container-rdma` (For use exclusively on VM SKUs with Infiniband)
93
88
@@ -97,7 +92,6 @@ Currently there are other images published by `microsoft-azure-batch` that suppo
97
92
98
93
#### Notes
99
94
The docker data root of the above images lies in different places:
100
-
- For the Azure Batch published `microsoft-azure-batch` images (Offer: `centos-container-rdma`, etc.), the docker data root is mapped to _/mnt/batch/docker_, which is located on the temporary disk.
101
95
- For the HPC image, or `microsoft-dsvm` (Offer: `ubuntu-hpc`, etc.), the docker data root is unchanged from the Docker default, which is _/var/lib/docker_ on Linux and _C:\ProgramData\Docker_ on Windows. These folders are located on the OS disk.
102
96
103
97
For non-Batch published images, the OS disk has the potential risk of being filled up quickly as container images are downloaded.
0 commit comments