March 2017
Beginner to intermediate
925 pages
18h 11m
English
We need an image to start the container. Let's see how we can search images on the Docker registry. As we have seen in Chapter 1, Introduction and Installation, a registry holds the Docker images and it can be both public and private. By default, the search will happen on the default public registry, which is called Docker Hub and is located at https://hub.docker.com/.
Make sure the Docker daemon is running on the host and you can connect through the Docker client.
docker search TERM
The following is an example to search a Fedora image:
$ docker search fedora | head -n5
The preceding screenshot lists the name, description, and ...
Read now
Unlock full access