From efeff843202cad67cd79d3e960bd90736cdd8c40 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Allan=20Nordh=C3=B8y?= Date: Fri, 11 Aug 2023 18:59:26 +0000 Subject: [PATCH] "HEALTHCHECK" --- docs/docker-swarm-usage.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/docker-swarm-usage.md b/docs/docker-swarm-usage.md index 218ae82..4d1abf2 100644 --- a/docs/docker-swarm-usage.md +++ b/docs/docker-swarm-usage.md @@ -14,7 +14,7 @@ The [Docker Image](../Dockerfile) includes a health check with the following opt ``` --timeout=10s ``` -> Specifies the amount of time to wait for a response from the \"healthcheck\" command. \ +> Specifies the amount of time to wait for a response from the \"HEALTHCHECK\" command. \ > If the response does not arrive within 10 seconds, the health check fails.
@@ -39,7 +39,7 @@ This command will attempt to connect to `http://localhost:3000/` \ and if it fails it will exit with a status code of `1`. \ If this command returns a status code other than `0`, the health check fails. -Overall, this HEALTHCHECK instruction is defining a health check process \ +Overall, this \"HEALTHCHECK\" instruction is defining a health check process \ that runs every 30 seconds, and waits up to 10 seconds for a response, \ begins 5 seconds after the container is started, and retries up to 3 times. \ The health check attempts to connect to http://localhost:3000/ \