mirror of
https://github.com/m-lamonaca/dev-notes.git
synced 2025-04-06 10:56:41 +00:00
feat(docker): add compose health checks notes
This commit is contained in:
parent
c3c679e6cd
commit
6f50690fe5
1 changed files with 10 additions and 2 deletions
|
@ -299,7 +299,7 @@ services:
|
||||||
dockerfile: <*.Dockerfile>
|
dockerfile: <*.Dockerfile>
|
||||||
args: # pass args to dockerfile
|
args: # pass args to dockerfile
|
||||||
ARG: <value>
|
ARG: <value>
|
||||||
- ARG=<value>
|
- ARG=<value>
|
||||||
ports:
|
ports:
|
||||||
- <host_port>:<container_port>
|
- <host_port>:<container_port>
|
||||||
networks: # attach container to one or more networks
|
networks: # attach container to one or more networks
|
||||||
|
@ -310,10 +310,18 @@ services:
|
||||||
ENV_VAR: <value>
|
ENV_VAR: <value>
|
||||||
- ENV_VAR=<value>
|
- ENV_VAR=<value>
|
||||||
env_file:
|
env_file:
|
||||||
- <path/to/env/file> # reusable env file
|
- <path/to/env/file> # reusable env file
|
||||||
volumes:
|
volumes:
|
||||||
- "./<rel/path/to/volume>:<in/container/path/to/data>" # service-dedicated volume
|
- "./<rel/path/to/volume>:<in/container/path/to/data>" # service-dedicated volume
|
||||||
- "<volume_name>:<in/container/path/to/data>" # reuseable 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
|
# reusable volume definitions
|
||||||
volumes:
|
volumes:
|
||||||
|
|
Loading…
Add table
Reference in a new issue