Skip to content

Commit 77e1296

Browse files
committed
update healthcheck
1 parent 234db8c commit 77e1296

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

docs/concepts/compose-support.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -136,13 +136,13 @@ environment:
136136
:::
137137

138138
:::info
139-
After you set sensitive environment variables as blank or `null` values in the `compose.yaml` file, you can securely set their actual value in the Defang CLI. See how Defang handles [Configuration](/docs/concepts/configuration) for more.
139+
After you set sensitive environment variables as blank or `null` values in the `compose.yaml` file, you can securely set their actual value in the Defang CLI. See our [Configuration page](/docs/concepts/configuration) for more.
140140
:::
141141

142142
### `healthcheck`
143143
(Optional, but required for healthchecks on services with a published port)
144144

145-
The healthcheck endpoints for the container. Note that `curl` is commonly used for containers with a `slim` based image, and `wget` is used for containers with an `alpine` based image.
145+
The healthcheck endpoints for the container. Note that `curl` is commonly used for containers with a `slim`-based image, and `wget` is used for containers with an `alpine`-based image.
146146

147147
```yaml
148148
healthcheck:
@@ -153,7 +153,7 @@ or
153153

154154
```yaml
155155
healthcheck:
156-
test: ["CMD", "wget", "--spider", "http://localhost:3000"]
156+
test: ["CMD", "wget", "--spider", "http://localhost:8080/"]
157157
```
158158

159159
### `image`

0 commit comments

Comments
 (0)