Debug School

Dikshyanta Das
Dikshyanta Das

Posted on

Assignment -2 : Container Lifecycle.

1.What is the diff between docker pause and docker unpause?

docker pause suspends all the processes inside the container while docker un-pause un-suspends all the processes inside the container.

2.What is the diff between docker stop and docker kill?

docker stop attempts to gracefully shutdown the the process inside the container by sending SIGTERM signal while docker kill command immediately terminates the processes by sending SIGKILL signal.

Top comments (0)