Difference between revisions of "Docker inspect"

From wikieduonline
Jump to navigation Jump to search
Tags: Mobile web edit, Mobile edit
Tags: Mobile web edit, Mobile edit
Line 8: Line 8:
  
 
* List of mounts: <ref>https://stackoverflow.com/questions/30133664/how-do-you-list-volumes-in-docker-containers</ref>
 
* List of mounts: <ref>https://stackoverflow.com/questions/30133664/how-do-you-list-volumes-in-docker-containers</ref>
<pre>docker inspect -f '{{ .Mounts }}' CONTAINER_NAME</pre>
+
<pre>docker inspect -f '{{ .Mounts }}' CONTAINER_NAME
 
+
docker inspect -f '{{ json .Mounts }}' CONTAINER_NAME | jq .
<pre>docker inspect -f '{{ json .Mounts }}' CONTAINER_NAME | jq</pre>
+
docker inspect -f '{{ json .Mounts }}' CONTAINER_NAME | python -m json.tool</pre>
 
 
<pre>docker inspect -f '{{ json .Mounts }}' CONTAINER_NAME | python -m json.tool</pre>
 
  
 
See also: <code>[[docker volume inspect]]</code>
 
See also: <code>[[docker volume inspect]]</code>

Revision as of 04:51, 26 April 2020

docker inspect CONTAINER_ID|IMAGE_ID (also available for: container, image, volume, network, node, service, or task)


docker inspect --format 'Template:Json .HostConfig.RestartPolicy' CONTAINER_NAME
  • List of mounts: [2]
docker inspect -f '{{ .Mounts }}' CONTAINER_NAME
docker inspect -f '{{ json .Mounts }}' CONTAINER_NAME | jq .
docker inspect -f '{{ json .Mounts }}' CONTAINER_NAME | python -m json.tool

See also: docker volume inspect

Docker inspect example

Redirecting container logs to syslog

docker inspect <container_id|container_name> | grep -A 5 LogConfig
"LogConfig": {
  "Type": "syslog"
  "Config": {}
}

Related commands

See also

Text is available under the Creative Commons Attribution-ShareAlike License; additional terms may apply. By using this site, you agree to the Terms of Use and Privacy Policy.

Original Source: https://en.wikiversity.org/wiki/DevOps/Docker/docker_inspect

Advertising: