List all Docker containers without healthcheck

List and find all Docker containers without an healthcheck

Isometric grid of Docker container boxes, several missing health indicators shown with orange warning auras, and a circuit-board stethoscope hovering above

Healthchecks are easy to forget when you spin up a new container, and there is no dashboard view that points out which ones are missing one.

docker ps --filter "health=none" --format '{{.ID}} \t {{.Names}}'

Run it after adding new services to your stack to catch any container that slipped through without a healthcheck defined.

Looking for help?
If you are looking for some help or want a quick chat, please head over to the Discord Community!