Skip to content

Latest commit

 

History

History
29 lines (19 loc) · 352 Bytes

Managing-Images.md

File metadata and controls

29 lines (19 loc) · 352 Bytes

Managing Images

Pulling Images

  • Pull an image from Docker Hub:

    docker pull <image-name>
  • Download a specific version (tag) of an image:

    docker pull <image-name>:<tag>

Managing

  • List all pulled or created images:

    docker images
  • Remove an image:

    docker rmi <image-id>