What is the difference between docker pause and docker 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!
The docker pause command suspends all processes in the specified containers. We can apply this command , if the container is in running state
The docker unpause command un-suspends all processes in the specified containers. We can apply this command , if the container is in pause state
docker pause <container name>
docker unpause <container name>