What is the difference between docker pause and unpause?
Limited Time Offer!
For Less Than the Cost of a Starbucks Coffee, Access All DevOpsSchool Videos on YouTube Unlimitedly.
Master DevOps, SRE, DevSecOps Skills!
DOCKER PAUSE:
It will suspends all processes in the specified containers. It means that the processes in the container stop running, and they are be able to resumed later.
docker pause [container id or name]
DOCKER UNPAUSE:
It will resumes all the processes in the specified container. It means recovery container all processes.
docker unpause [container id or name]