mirror of https://github.com/docker/cli.git
Update help output to match Docker 1.11.
* Also touch up headings. Signed-off-by: Charles Chan <charleswhchan@users.noreply.github.com>
This commit is contained in:
parent
603002a3ec
commit
def6847e11
|
@ -36,7 +36,7 @@ straightforward manner.
|
||||||
|
|
||||||
$ docker inspect --format='{{range .NetworkSettings.Networks}}{{.IPAddress}}{{end}}' $INSTANCE_ID
|
$ docker inspect --format='{{range .NetworkSettings.Networks}}{{.IPAddress}}{{end}}' $INSTANCE_ID
|
||||||
|
|
||||||
**Get an instance's MAC Address:**
|
**Get an instance's MAC address:**
|
||||||
|
|
||||||
For the most part, you can pick out any field from the JSON in a fairly
|
For the most part, you can pick out any field from the JSON in a fairly
|
||||||
straightforward manner.
|
straightforward manner.
|
||||||
|
@ -51,14 +51,14 @@ straightforward manner.
|
||||||
|
|
||||||
$ docker inspect --format='{{.Container.Spec.Image}}' $INSTANCE_ID
|
$ docker inspect --format='{{.Container.Spec.Image}}' $INSTANCE_ID
|
||||||
|
|
||||||
**List All Port Bindings:**
|
**List all port bindings:**
|
||||||
|
|
||||||
One can loop over arrays and maps in the results to produce simple text
|
One can loop over arrays and maps in the results to produce simple text
|
||||||
output:
|
output:
|
||||||
|
|
||||||
$ docker inspect --format='{{range $p, $conf := .NetworkSettings.Ports}} {{$p}} -> {{(index $conf 0).HostPort}} {{end}}' $INSTANCE_ID
|
$ docker inspect --format='{{range $p, $conf := .NetworkSettings.Ports}} {{$p}} -> {{(index $conf 0).HostPort}} {{end}}' $INSTANCE_ID
|
||||||
|
|
||||||
**Find a Specific Port Mapping:**
|
**Find a specific port mapping:**
|
||||||
|
|
||||||
The `.Field` syntax doesn't work when the field name begins with a
|
The `.Field` syntax doesn't work when the field name begins with a
|
||||||
number, but the template language's `index` function does. The
|
number, but the template language's `index` function does. The
|
||||||
|
|
Loading…
Reference in New Issue