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
from docker inspect logzio/jmx2graphite:
docker inspect logzio/jmx2graphite
"Cmd": [ "/bin/sh", "-c", "java -cp jmx2graphite.jar:slf4j-simple-1.7.25.jar io.logz.jmx2graphite.Jmx2GraphiteJolokia application.conf" ],
this results in /bin/sh having pid1 in the container and java pid >1.
on docker kill the signal gets passed to /bin/sh which exits, but java has no clue what happened and gets surprised with a SIGKILL 60 seconds later.
docker kill
/bin/sh
java
Can we please set the cmd to exec java -cp ... or use a proper init?
exec java -cp ...
The text was updated successfully, but these errors were encountered:
I don't have a lot of time lately. Would love help with PR on this.
Sorry, something went wrong.
No branches or pull requests
from
docker inspect logzio/jmx2graphite
:this results in /bin/sh having pid1 in the container and java pid >1.
on
docker kill
the signal gets passed to/bin/sh
which exits, butjava
has no clue what happened and gets surprised with a SIGKILL 60 seconds later.Can we please set the cmd to
exec java -cp ...
or use a proper init?The text was updated successfully, but these errors were encountered: