Docker Images: Key Commands
Get a brief summary of the commands for managing Docker images covered in this chapter.
We'll cover the following...
Summary of the Docker image commands
Let’s revise some of the commands we’ve used.
-
docker pull
is the command to download images from remote registries. It defaults to Docker Hub but works with other registries. Thedocker pull alpine:latest
command will pull the image tagged aslatest
...