Docker stop vs kill
docker stop attempts to gracefully shutdown container(s) while docker kill immediately stops/terminates them;
docker stop issues a SIGTERM signal to the main process inside the container, while docker kill issues a SIGKILL signal;
Docker pause vs unpause
The docker pause command suspends all processes in the specified containers
The docker unpause command un-suspends all processes in the specified containers
Top comments (0)