Speed up docker-compose shutdown

what does it actually mean when docker-compose says it is “gracefully stopping “? Basically when you do Ctrl+C you are sending a SIGINT (2) signal to the application that runs in the foreground. Most of the time, the semantics of this signal is similar to the SIGTERM (15) signal that is raised when doing docker-compose … Read more