What is the difference between docker pause and docker unpause?

DevOps

MOTOSHARE 🚗🏍️
Turning Idle Vehicles into Shared Rides & Earnings

From Idle to Income. From Parked to Purpose.
Earn by Sharing, Ride by Renting.
Where Owners Earn, Riders Move.
Owners Earn. Riders Move. Motoshare Connects.

With Motoshare, every parked vehicle finds a purpose. Owners earn. Renters ride.
🚀 Everyone wins.

Start Your Journey with Motoshare

Docker pause suspends all the process to container. Docker unpause will un-suspend all the process to container

root@ip-172-31-28-155:/home/ubuntu# docker pause rajuc
rajuc
root@ip-172-31-28-155:/home/ubuntu# docker ps | grep rajc
root@ip-172-31-28-155:/home/ubuntu# docker ps | grep rajuc
548886386f8b   httpd     "httpd-foreground"       20 minutes ago      Up 20 seconds (Paused)   80/tcp    rajuc

unpause

root@ip-172-31-28-155:/home/ubuntu# docker unpause rajuc
rajuc
root@ip-172-31-28-155:/home/ubuntu# docker ps | grep rajuc
548886386f8b   httpd     "httpd-foreground"       21 minutes ago      Up 50 seconds            80/tcp    rajuc

Code language: PHP (php)