Docker cheatsheet

From Leechfinger
Revision as of 15:56, 7 June 2024 by Qais (talk | contribs) (Created page with "== Listing Images == <syntaxhighlight lang="bash" line> # docker images REPOSITORY TAG IMAGE ID CREATED SIZE collabora/code latest f247113d4e77 4 weeks ago 1.41GB </syntaxhighlight> == Removing Images == <syntaxhighlight lang="bash" line> # docker rmi f247113d4ea77 docker rmi -f $(docker images -a -q) </syntaxhighlight>")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigationJump to search

Listing Images

# docker images 
REPOSITORY       TAG       IMAGE ID       CREATED       SIZE
collabora/code   latest    f247113d4e77   4 weeks ago   1.41GB

Removing Images

# docker rmi f247113d4ea77
docker rmi -f $(docker images -a -q)