-
hey everyone! |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 3 replies
-
What kind of container image do you have? Is it a web or API server? Does it have any exposed ports? How did you invoke It's possible that what you are seeing is the default The In addition to configuring custom http probe commands with There are other The The The exec Note that you can combine the |
Beta Was this translation helpful? Give feedback.
What kind of container image do you have? Is it a web or API server? Does it have any exposed ports? How did you invoke
docker-slim
and what command flags did you use?It's possible that what you are seeing is the default
docker-slim
behavior for the container images that expose ports. If that's the case thendocker-slim
will run its probes against the temporary container it creates based on your container image.The
--continue-after
parameter todocker-slim
defines how you want to decide when the analysis is done. The parameter defaults toprobe
, which means thatdocker-slim
will wait until all (http) probes are done executing and then it moves on to the next phase.In addition to config…