Answer: Assignment Day 1

DevOps

YOUR COSMETIC CARE STARTS HERE

Find the Best Cosmetic Hospitals

Trusted • Curated • Easy

Looking for the right place for a cosmetic procedure? Explore top cosmetic hospitals in one place and choose with confidence.

“Small steps lead to big changes — today is a perfect day to begin.”

Explore Cosmetic Hospitals Compare hospitals, services & options quickly.

✓ Shortlist providers • ✓ Review options • ✓ Take the next step with confidence

What is the diff between docker stop and docker kill?

docker stop will send SIGTERM to the process and docker will have some-time seconds to clean up like saving files or emitting some messages.

docker stop  <docker_id>
docker inspect <docker_id>Code language: HTML, XML (xml)

Will return “ExitCode:0”

docker kill will terminate the process used in-case the docker is in locked up state or not responding state.

docker kill <docker_id>
docker inspect <docker_id>Code language: HTML, XML (xml)

Will return “ExitCode:137”