Replies: 1 comment
-
Not really, it is just much easier when you have to type 20 arguments, feel free to create PR, maybe we would not need to change the signal after all. |
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
Uh oh!
There was an error while loading. Please reload this page.
-
As for now string is used, which forces docker to use
/bin/sh -cto run command provided in string.Unfortunately this ends up with
shprocess being PID=1 and getting all signals.python is spawned as child process of
shand does not receive signals.When ctrl+C is sent then
shprocess dies and makes python an orphaned process which does not close properly. Thats why it does not react immediately to stop signal and ends up with fancy exit code.Is there any reason to use string CMD format?
Beta Was this translation helpful? Give feedback.
All reactions