Once the container to be debugged is running you need to find out some identifying information about it that you can then specify to Enterprise Developer so that you can connect to the container to start debugging it.
You can specify either of the following pieces of information to Enterprise Developer:
To display summary information of all running containers (including their IDs) enter the following command:
docker ps
To find the IP address used by a running container you use the docker inspect command. The docker inspect command can return a wide range of information, but to return the IP address of a container the format of the docker inspect command is shown below:
docker inspect -f "{{ .NetworkSettings.Networks.nat.IPAddress }}" container-name-or-id
So, for example, to find the IP address of the container that would have been started by the docker run command in Running a Container that is to be Debugged you could use the following command:
docker inspect -f "{{ .NetworkSettings.Networks.nat.IPAddress }}" helloworld-x64-debug