A lot of applications are provided in the form of Docker images that can be downloaded from the internet. If we know the image name, it would be enough to run it in the same way we did with the hello world example. How can we find the desired application image on the Docker Hub? Let's take MongoDB as an example:
- If we want to find it on the Docker Hub, we have two options:
- Search on the Docker Hub explore page (https://hub.docker.com/search/)
- Use the docker search command
In the second case, we can perform the following operation:
$ docker search mongo
NAME DESCRIPTION STARS OFFICIAL AUTOMATED
mongo MongoDB document databases provide high avai… 5554 [OK]
mongo-express Web-based MongoDB admin interface, written w… 374 [OK]
tutum/mongodb MongoDB Docker image – listens in port 27017...