Skip to content

Commit 83f17cf

Browse files
committed
change wording
1 parent c8ef356 commit 83f17cf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/containers/tutorial-multicontainer.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -324,7 +324,7 @@ Congratulations, you're running a Docker Compose application with a custom Docke
324324

325325
The code shown here works with .NET 8 and later, which sets up a user account in the Dockerfile without administrator privileges, and exposes port 8080 because the HTTP default port 80 is not accessible without elevated privilege.
326326

327-
The delay is used here because this example code could run immediately on application launch, before the MyWebAPI service is ready to receive calls. Docker Compose provides more robust ways to handle timing issues between dependent containers that can occur during startup. For example, you can use `depends_on` to control the order in which containers are started, and you can specify a health check or other conditions that must be met before a service is considered ready, before starting the next service. See [Control startup order in Docker Compose](https://docs.docker.com/compose/how-tos/startup-order).
327+
The delay is used here because this example code could run immediately on application launch, before the MyWebAPI service is ready to receive web requests. Docker Compose provides more robust ways to handle timing issues between dependent containers that can occur during startup. For example, you can use `depends_on` to control the order in which containers are started, and you can specify a health check or other conditions that must be met before a service is considered ready, before starting the next service. See [Control startup order in Docker Compose](https://docs.docker.com/compose/how-tos/startup-order).
328328

329329
1. In the `Index.cshtml` file, add a line to display `ViewData["Message"]` so that the file looks like the following code:
330330

0 commit comments

Comments
 (0)