Difficulty: Intermediate
How do you find the IP address of a running container?
Use `docker inspect <container_id>` and look under the `NetworkSettings` section, or run `docker inspect -f '{{range .NetworkSettings.Networks}}{{.IPAddress}}{{end}}' <container_id>`.
Network, Inspect