Debug School

Poornima P V
Poornima P V

Posted on

Docker training - Assignment 2

What is the diff between docker stop and docker kill?
The docker stop command issue the SIGTERM signal
The docker kill command sends the SIGKILL signal and will forcefully stops the containers

what is the diff between docker pause and docker unpause
Pause suspends all processes and unpause resumes it.

Top comments (0)