1.1.0 • Published 6 years ago

healthcheck-block v1.1.0

Weekly downloads
1
License
MIT
Repository
github
Last release
6 years ago

Blocks the execution until the defined container is healthy in a Docker Compose environment. Useful if you have to automatize a script after starting some containers (for example in some CI/CD systems like GitLab).

Installation

Install it (locally or globally) with npm, yarn, or any other Node dependency manager:

"docker-healthcheck": "*"

Usage

Run it with node node_moduler/docker-healthcheck network container, where network is the name of the network (project), and container is the name of the container (service). For example:

docker-compose up -d
node node_modules/docker-healthcheck airbnb php
docker-compose -p airbnb exec php composer update

As default, we are checking healthiness by executing the healthcheck script (./docker-healthcheck as default), so that your script doesn't have to wait for the next cycle of Docker healthcheck (which is 30 seconds by default). Quite obviously this method does not work, if the healthcheck is defined in the Docker Compose YML file. You can change the script to run with the -script parameter, like:

node node_modules/docker-healthcheck airbnb php -script healthcheck.sh

You can also wait for a container to be actually marked healthy by Docker with the --wait-healthcheck flag.

If you would like the script to terminate with an error code if the container is still not healthy after a time limit, you can set a timeout in seconds with -timeout, for example:

node node_modules/docker-healthcheck airbnb php -timeout 30