March 2017
Beginner to intermediate
925 pages
18h 11m
English
After searching the image, we can pull it to the system by running the Docker daemon. Let's see how we can do that.
Make sure the Docker daemon is running on the host and you can connect through the Docker client.
docker pull NAME[:TAG]
The following is an example to pull the Fedora image:
$ docker pull fedora

The pull command downloads all layers from the Docker registry, which are required to create that image locally. We will see details about layers in the next chapter.
Read now
Unlock full access