Add Healthcheck cheatsheet (#1892)
This commit is contained in:
parent
09d5779281
commit
0a6785c3f1
|
@ -196,6 +196,18 @@ services:
|
||||||
- project_db_1:mysql
|
- project_db_1:mysql
|
||||||
```
|
```
|
||||||
|
|
||||||
|
### Healthcheck
|
||||||
|
|
||||||
|
```yaml
|
||||||
|
# declare service healthy when `test` command succeed
|
||||||
|
healthcheck:
|
||||||
|
test: ["CMD", "curl", "-f", "http://localhost"]
|
||||||
|
interval: 1m30s
|
||||||
|
timeout: 10s
|
||||||
|
retries: 3
|
||||||
|
start_period: 40s
|
||||||
|
```
|
||||||
|
|
||||||
### Hosts
|
### Hosts
|
||||||
|
|
||||||
```yaml
|
```yaml
|
||||||
|
|
Loading…
Reference in New Issue