Closed FezVrasta closed 3 months ago
Hey, thanks for the report. I'm interested in this bit:
Docker doesn't properly shuts down the container when CTRL+C is pressed, even though it does it when I run the docker command directly.
Does it stop the container when you press ctrl+c? If yes - I think it's probably best if we fixed concurrently, instead of adding another option.
Testing with a mysql image, it ignores every ctrl+c when in interactive mode.
I see the container is properly shut down on CTRL+C on macOS. I'm using the postgres image though.
Investigated this for a bit.
I imagine docker is adapting its behaviour when it's not running from a TTY, in which case to stop the container/clean shutdown, the options are
Sounds like a teardown command is the best option.
I'm trying to run a docker container along with a node.js server, and I would like to stop the container when the user stops the node.js server script.
Unfortunately Docker doesn't properly shuts down the container when CTRL+C is pressed, even though it does it when I run the docker command directly.
Would it be possible to add a
--teardown
option that allows to specify a script to run when the process is interrupted (CTRL+C is pressed)?