docker inspect

From wikieduonline
Revision as of 15:31, 21 April 2022 by Welcome (talk | contribs)
Jump to navigation Jump to search

Volumes and mounts

  • 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

IP

docker inspect --format "{{ .NetworkSettings.IPAddress }}"

Start contiguration

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

Advertising: