fix text error (#25400)

pull/25398/head
ruslan528 2022-03-23 21:57:16 +03:00 committed by GitHub
parent bcdb86cd5b
commit e0f9aec869
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -45,7 +45,7 @@ The following example creates a health check endpoint at `/healthz`:
HEALTHCHECK CMD curl --fail http://localhost:5000/healthz || exit HEALTHCHECK CMD curl --fail http://localhost:5000/healthz || exit
``` ```
The preceding example ues `curl` to make a HTTP request to the health check endpoint at `/healthz`. `curl` isn't included in the .NET Linux container images, but it can be added by installing the required package in the Dockerfile. Containers that use images based on Alpine Linux can use the included `wget` in place of `curl`. The preceding example uses `curl` to make a HTTP request to the health check endpoint at `/healthz`. `curl` isn't included in the .NET Linux container images, but it can be added by installing the required package in the Dockerfile. Containers that use images based on Alpine Linux can use the included `wget` in place of `curl`.
## Create health checks ## Create health checks