August 2018
Intermediate to advanced
352 pages
12h 30m
English
To inspect a container, run the following command:
$ docker container inspect [OPTIONS] CONTAINER [CONTAINER...]
We'll start a container and then inspect it, like so:
$ ID=$(docker container run -d -i ubuntu /bin/bash)
$ docker container inspect $ID

Read now
Unlock full access