Replies: 2 comments 1 reply
-
@nforced thank you for your request - we will study this issue and provide an answer. |
Beta Was this translation helpful? Give feedback.
1 reply
-
I think this will be a great improvement, thank you for noticing. We've decided to include this feature in next release according to health check pattern so that |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I have a general question about this
CMD curl -sS {{your host}}/health || exit 1
For example
return new Response(self::CHECK_RESULT_NAME, false, 'Entity Manager Not Found.');
has no different effect fromreturn new Response(self::CHECK_RESULT_NAME, true, 'ok');
tocurl -sS
as they all return the samereturn new JsonResponse($resultHealthCheck, Response::HTTP_OK);
.How is this going to set the Docker container to unhealthy?
Beta Was this translation helpful? Give feedback.
All reactions