July 2018
Intermediate to advanced
504 pages
11h 34m
English
The first step in running and using a container on your server or laptop is to search and pull a Docker image from the Docker registry using the docker search command.
Let's search for the web server container. The command to do so is:
$ docker search httpdNAME DESCRIPTION STARS OFFICIAL AUTOMATEDhttpd ... 1569 [OK]hypriot/rpi-busybox-httpd ... 40centos/httpd 15 [OK]centos/httpd-24-centos7 ... 9
Alternatively, we can go to https://hub.docker.com/ and type httpd in the search window. It will give us something similar to the docker search httpd results:

Once the container image is found, ...