What is difference between Docker kill and Docker stop commands

In this article, we will see the difference between Docker kill and Docker stop commands.

1. docker stop: Stop a running container (send SIGTERM, and then SIGKILL after grace period) […] The main process inside the container will receive SIGTERM, and after a grace period, SIGKILL.
Continue reading What is difference between Docker kill and Docker stop commands