logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

Docker Inspect - Return Container Information | Online Free DevTools by Hexmos

Inspect Docker objects with Docker Inspect. Retrieve low-level information on containers, images, and volumes. Free online tool, no registration required.

docker-inspect

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

  • Display help:

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}}

See Also