0
0
Dockerdevops~10 mins

Listing local images in Docker - Mini Project: Build & Apply

Choose your learning style9 modes available
Listing Local Docker Images
📖 Scenario: You are working on your computer where you use Docker to manage containers. You want to see which Docker images are saved locally on your machine.
🎯 Goal: Learn how to list all Docker images stored locally using Docker commands.
📋 What You'll Learn
Use the Docker command line interface
List local Docker images with exact command syntax
Display the output of the Docker images list
💡 Why This Matters
🌍 Real World
Developers and system administrators often need to see which Docker images are stored locally to manage disk space and container deployments.
💼 Career
Knowing how to list Docker images is a basic skill for DevOps roles and container management tasks.
Progress0 / 4 steps
1
Open your terminal and check Docker is installed
Type the command docker --version to check if Docker is installed and working.
Docker
Need a hint?

Use the command docker --version to see if Docker is installed.

2
List all local Docker images
Type the command docker images to list all Docker images stored locally on your machine.
Docker
Need a hint?

The command docker images shows all local images.

3
Add a filter to list images by a specific repository
Use the command docker images nginx to list only images from the nginx repository.
Docker
Need a hint?

Adding the repository name after docker images filters the list.

4
Display the final list of all local Docker images
Run the command docker images again to display all local Docker images.
Docker
Need a hint?

The output should show a table with the header REPOSITORY listing all images.