image.`healthcheck` Map
Optional configuration for container health checks.
image.healthcheck.`command` Array of Strings
The command to run to determine if the container is healthy.
The string array can start with `CMD` to execute the command arguments directly, or `CMD-SHELL` to run the command with the container's default shell.
image.healthcheck.`interval` Duration
Time period between health checks, in seconds. Default is 10s.
image.healthcheck.`retries` Integer
Number of times to retry before container is deemed unhealthy. Default is 2.
image.healthcheck.`timeout` Duration
How long to wait before considering the health check failed, in seconds. Default is 5s.
image.healthcheck.`start_period` Duration
Length of grace period for containers to bootstrap before failed health checks count towards the maximum number of retries. Default is 0s.