HiveBrain v1.2.0
Get Started
← Back to all entries
snippetbashTip

docker inspect — Return low-level information on Docker objects. More information: <https://docs.docker.com/reference

Submitted by: @import:tldr-pages··
0
Viewed 0 times
commanddocker inspectleveldockercliinformationreturnlow

Problem

How to use the docker inspect command: Return low-level information on Docker objects. More information: <https://docs.docker.com/reference/cli/docker/inspect/>.

Solution

docker inspect — Return low-level information on Docker objects. More information: <https://docs.docker.com/reference/cli/docker/inspect/>.

Display information about a container, image, or volume using a name or ID:
docker inspect {{container|image|ID}}


Display a container's IP address:
docker inspect {{[-f|--format]}} '\{\{range.NetworkSettings.Networks\}\}\{\{.IPAddress\}\}\{\{end\}\}' {{container}}


Display the path to the container's log file:
docker inspect {{[-f|--format]}} '\{\{.LogPath\}\}' {{container}}


Display the image name of the container:
docker inspect {{[-f|--format]}} '\{\{.Config.Image\}\}' {{container}}


Display the configuration information as JSON:
docker inspect {{[-f|--format]}} '\{\{json .Config\}\}' {{container}}


Display all port bindings:
docker inspect {{[-f|--format]}} '\{\{range $p, $conf := .NetworkSettings.Ports\}\} \{\{$p\}\} -> \{\{(index $conf 0).HostPort\}\} \{\{end\}\}' {{container}}


Display help:
docker inspect

Code Snippets

Display information about a container, image, or volume using a name or ID

docker inspect {{container|image|ID}}

Display a container's IP address

docker inspect {{[-f|--format]}} '\{\{range.NetworkSettings.Networks\}\}\{\{.IPAddress\}\}\{\{end\}\}' {{container}}

Display the path to the container's log file

docker inspect {{[-f|--format]}} '\{\{.LogPath\}\}' {{container}}

Display the image name of the container

docker inspect {{[-f|--format]}} '\{\{.Config.Image\}\}' {{container}}

Display the configuration information as JSON

docker inspect {{[-f|--format]}} '\{\{json .Config\}\}' {{container}}

Context

tldr-pages: common/docker inspect

Revisions (0)

No revisions yet.