It would be great to have healthcheck for docker compose
Something like the following (from other docker compose I am using):
healthcheck:
test: wget --no-verbose --tries=1 --spider http://localhost:8080 || exit 1
interval: 40s
timeout: 30s
retries: 3
start_period: 30s
Not sure how it could be effectively determined if the container is healthy or not in its context
It would be great to have healthcheck for docker compose
Something like the following (from other docker compose I am using):
Not sure how it could be effectively determined if the container is healthy or not in its context