Hi@akhtar,
You can use the docker_container module in your Ansible playbook. This module has an argument to check the health of a container. You can see the below playbook.
- name: Start container with healthstatus
  docker_container:
    name: nginx-proxy
    image: nginx:1.13
    state: started
    healthcheck:
      # Check if nginx server is healthy by curl'ing the server.
      # If this fails or timeouts, the healthcheck fails.
      test: ["CMD", "curl", "--fail", "url"]
      interval: 1m30s
      timeout: 10s
      retries: 3
      start_period: 30s