docker image | Docker Documentation
docs.docker.com › engine › referenceCommand: Description: docker image build: Build an image from a Dockerfile: docker image history: Show the history of an image: docker image import: Import the contents from a tarball to create a filesystem image: docker image inspect: Display detailed information on one or more images: docker image load: Load an image from a tar archive or ...
Docker Commands Cheat Sheet | Buddy
buddy.works › tutorials › docker-commands-cheat-sheetNov 18, 2021 · docker container ls -s -s is the short form --size This command adds SIZE column to the output. As it can be seen from the screenshot above, 1.09kB is the disk space used by the container (writable layer). In simple words, the value in the SIZE column represents the size of the data that is written by the container in its writable layer.
docker images | Docker Documentation
docs.docker.com › engine › referenceThe docker images command takes an optional [REPOSITORY [:TAG]] argument that restricts the list to images that match the argument. If you specify REPOSITORY but no TAG, the docker images command lists all images in the given repository. For example, to list all images in the “java” repository, run this command :