From 9a205df6fcf42b763b292a056d1e86168aad73a9 Mon Sep 17 00:00:00 2001 From: Trenton Broughton Date: Wed, 18 Feb 2015 14:02:57 -0500 Subject: [PATCH] Updated "Get IP Address" Added verification from the docker inspect documentation https://docs.docker.com/reference/commandline/cli/#inspect --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 11df194..cd6a151 100644 --- a/README.md +++ b/README.md @@ -354,7 +354,7 @@ cd jq-1.3 docker inspect `dl` | jq -r '.[0].NetworkSettings.IPAddress' ``` -or (this is unverified) +or using a [go template](https://docs.docker.com/reference/commandline/cli/#inspect) ``` docker inspect -f '{{ .NetworkSettings.IPAddress }}'