Q3. What is the differenece between docker pause and docker unpause?
Upgrade & Secure Your Future with DevOps, SRE, DevSecOps, MLOps!
We spend hours on Instagram and YouTube and waste money on coffee and fast food, but won’t spend 30 minutes a day learning skills to boost our careers.
Master in DevOps, SRE, DevSecOps & MLOps!
Learn from Guru Rajesh Kumar and double your salary in just one year.
Docker pause is used to pause the running container which can be resumed with unpause. But is we stop or kill we can not unpause but we can restart.
docker create –name vin6 httpd
docker start vin6
docker ps
docker stop vin6
docker ps -a
docker start vin6
docker pause vin6
docker ps -a
docker unpause vin6
docker images -a
docker ps -a
docker stop vin6
docker restart vin6
docker ps
docker kill vin6