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/ai-services/containers/docker-compose-recipe.md
+6-5Lines changed: 6 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -7,17 +7,18 @@ author: aahill
7
7
manager: nitinme
8
8
ms.service: azure-ai-services
9
9
ms.topic: how-to
10
-
ms.date: 11/06/2024
10
+
ms.date: 02/12/2025
11
11
ms.author: aahi
12
12
13
13
# SME: Brendan Walsh
14
14
#Customer intent: As a potential customer, I want to know how to configure containers so I can reuse them.
15
15
---
16
16
17
-
# Use Docker Compose to deploy multiple containers
17
+
# Use Docker Compose to deploy multiple Azure AI containers
18
18
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.
20
20
21
+
> [!NOTE]
21
22
> [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.
22
23
23
24
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:
36
37
37
38
## Docker Compose file
38
39
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.
0 commit comments