How To Find the IP Address of a Docker Container 04/12/201609/07/2019 0 Comments First, find the Docker container ID. Issue this:docker ps -lThe results of the above command should provide the container ID. Next issue this:docker inspect <containerID> For greater detail, see this posting. Tweet