You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
What a tricky bug!
Currently subprocess.Popen() starts 'docker run' with '-it' arguments.
That makes docker run in interactive mode and breaks the delivery of
KeyboardInterrupt in python. So Ctrl+C sometimes doesn't work properly.
Let's add a new '-n' argument for run_container.sh to disable docker
interactive mode when needed.
That fixes the issue #1.
Hi @xairy,
I'm glad that you use this tool!
Thanks for the report.
That was a tricky bug: subprocess.Popen() starts docker run with -it arguments.
That makes docker run in interactive mode, but breaks the delivery of KeyboardInterrupt in python. So Ctrl+C sometimes doesn't work properly.
I added a new -n argument for run_container.sh to disable docker interactive mode
when needed. I see that the issue is fixed. Can you reproduce it?
Can be resolved manually with sending a
kill -9
to themake
process.The text was updated successfully, but these errors were encountered: