Skip to content

Commit 1fbc0fd

Browse files
committed
updating docker page
1 parent c14f4d8 commit 1fbc0fd

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

articles/ai-services/containers/docker-compose-recipe.md

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,17 +7,18 @@ author: aahill
77
manager: nitinme
88
ms.service: azure-ai-services
99
ms.topic: how-to
10-
ms.date: 11/06/2024
10+
ms.date: 02/12/2025
1111
ms.author: aahi
1212

1313
# SME: Brendan Walsh
1414
#Customer intent: As a potential customer, I want to know how to configure containers so I can reuse them.
1515
---
1616

17-
# Use Docker Compose to deploy multiple containers
17+
# Use Docker Compose to deploy multiple Azure AI containers
1818

19-
This article shows you how to deploy multiple Azure AI containers. Specifically, you'll learn how to use Docker Compose to orchestrate multiple Docker container images.
19+
This article shows you how to deploy multiple Azure AI containers. Specifically, you'll learn how to use Docker Compose to orchestrate multiple Docker container images. The example in this article is deploying a [Document Intelligence](../document-intelligence/overview.md) container and a [AI Vision read](../computer-vision/how-to/call-read-api.md) container.
2020

21+
> [!NOTE]
2122
> [Docker Compose](https://docs.docker.com/compose/) is a tool for defining and running multi-container Docker applications. In Compose, you use a YAML file to configure your application's services. Then, you create and start all the services from your configuration by running a single command.
2223
2324
It can be useful to orchestrate multiple container images on a single host computer. In this article, we'll pull together the Read and Document Intelligence containers.
@@ -36,7 +37,7 @@ This procedure requires several tools that must be installed and run locally:
3637

3738
## Docker Compose file
3839

39-
The YAML file defines all the services to be deployed. These services rely on either a `DockerFile` or an existing container image. In this case, we'll use two preview images. Copy and paste the following YAML file, and save it as *docker-compose.yaml*. Provide the appropriate **apikey**, **billing**, and **EndpointUri** values in the file.
40+
The YAML file defines all the Azure AI services containers to be deployed. These services rely on either a `DockerFile` or an existing container image. In this case, we'll use two images. Copy and paste the following YAML file, and save it as *docker-compose.yaml*. Provide the appropriate **apikey**, **billing**, and **EndpointUri** values in the file.
4041

4142
```yaml
4243
version: '3.7'
@@ -152,7 +153,7 @@ ocr_1 | Application started. Press Ctrl+C to shut down.
152153

153154
[!INCLUDE [Tip for using docker list](../includes/cognitive-services-containers-docker-list-tip.md)]
154155

155-
Here's some example output:
156+
Here's some example outputs:
156157

157158
```
158159
IMAGE ID REPOSITORY TAG

0 commit comments

Comments
 (0)