feat(docker): add compose health checks notes

This commit is contained in:
Marcello 2023-07-10 11:37:55 +02:00
parent c3c679e6cd
commit 6f50690fe5

View file

@ -314,6 +314,14 @@ services:
volumes:
- "./<rel/path/to/volume>:<in/container/path/to/data>" # service-dedicated volume
- "<volume_name>:<in/container/path/to/data>" # reuseable volume
healthcheck:
disable: <bool> # set to true to disable
test: curl -f http://localhost # set to ["NONE"] to disable
interval: # interval between checks (default 30s)
timeout: # check fail timeout (default 30s)
retries: # num of retries before unhealty (default 3)
start_period: # container init grace pediod (default 5s)
start_interval: # check interval in start period
# reusable volume definitions
volumes: