Debug School

Shwetha
Shwetha

Posted on

Docker-Kubernetes(Assignment)

Docker stop Vs Docker kill
Docker stop command sends SIGTERM signal to running container process. It will stop the process however it takes a while to shutdown the container completely.
Docker kill command is kind of similar to docker stop command however it sends SIGKILL signal to our running container process. SIGKILL signal immediately shuts the container down without taking any pause
-------------------------------------------------------------------------------Docker pause vs Docker unpause
The 'docker pause' command pauses or stops a container temporarily by suspending all the processes in the 1given container.
The 'docker unpause' command is the opposite of the 'docker pause' command. This command un-pauses all the processes in the given container.

Top comments (0)