There is a new Dockerfile instruction [HEALTHCHECK](https://docs.docker.com/engine/reference/builder/#/healthcheck) what is useful for detecting if container is still starting (and other should wait) or unhealthy. It it enought to write something like this? ``` HEALTHCHECK CMD mysql --user=$MYSQL_USER --password=$MYSQL_PASSWORD -e "show databases;" ```