What is difference between Docker kill and Docker stop commands

In this article, we will see the difference between Docker kill and Docker stop commands.

1. docker stop: Stop a running container (send SIGTERM, and then SIGKILL after grace period) […] The main process inside the container will receive SIGTERM, and after a grace period, SIGKILL.
Continue reading What is difference between Docker kill and Docker stop commands

How to get a Docker container’s IP address from the host

In this article, we will see how to get a Docker container’s IP address from the host using different methods.

We can get the docker container IP using inspect or by chekcing hosts file. Continue reading How to get a Docker container’s IP address from the host