The container's health should be constantly monitored
Set up the docker integration.
If the container image does not have an HEALTHCHECK instruction defined, you should use the --health-cmd
parameter at container runtime to check container health.
If the container image you are using does not have a pre-defined HEALTHCHECK instruction, use the --health-cmd
parameter to check container health at runtime. Based on the reported health status, remedial actions can be taken if necessary.
Run this command and ensure that all containers are reporting their health status: docker ps --quiet | xargs docker inspect --format '{{ .Id }}: Health={{ .State.Health.Status }}'
You should run the container using the --health-cmd
parameter. For example, docker run -d --health-cmd='stat /etc/passwd || exit 1' nginx
None
By default, health checks are not carried out at container runtime.
- https://docs.docker.com/engine/reference/run/#healthcheck
Version 6
18 Application Software Security Application Software Security