Search⌘ K
AI Features

Finding Images to Use

Explore how to find and select trustworthy Docker images for services like Postgres. Understand the use of Docker Hub and CLI commands to identify official images that ensure security and updates for your Rails projects.

Throughout the course, we use a number of different known images. You may be wondering how you would find images to use if you had to do this yourself. It is important for you to be able to figure things out for yourself, so let’s delve into this now.

Postgres

Imagine we want to run a Postgres database, and we need to find an image that provides it. There are two ways you can go about finding images: using Docker Hub, Docker’s online service for storing images or Docker’s command-line interface (CLI). Let’s look at both in ...