We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
There is not a provided health check to be used with docker compose
Any strategy to perform a simple health check to know when the container is healthy and ready to work
I created another image in which I installed
apt-get update && apt-get install -y netcat
The this health check can be used
healthcheck: test: nc 127.0.0.1 22 -z interval: 1s retries: 30
If you can provide a simple http port like
/health
It would not be required the netcat installation
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Current Behavior
There is not a provided health check to be used with docker compose
Desired Behavior
Any strategy to perform a simple health check to know when the container is healthy and ready to work
Workaround
I created another image in which I installed
The this health check can be used
Idea
If you can provide a simple http port like
It would not be required the netcat installation
The text was updated successfully, but these errors were encountered: