1234567891011121314151617181920212223242526 |
- :title: Images Command
- :description: List images
- :keywords: images, docker, container, documentation
- =========================
- ``images`` -- List images
- =========================
- ::
- Usage: docker images [OPTIONS] [NAME]
- List images
- -a=false: show all images
- -q=false: only show numeric IDs
- -viz=false: output in graphviz format
- Displaying images visually
- --------------------------
- ::
- docker images -viz | dot -Tpng -o docker.png
- .. image:: images/docker_images.gif
|