Introduction
In this lab, you will learn how to use the docker buildx history ls
command to manage and view your Docker build records. We will start by building a simple Docker image using docker buildx build
, which automatically creates a build record.
Following the image build, you will explore how to list all build records using docker buildx history ls
. You will then learn how to filter these records based on their status using the --filter
option and how to customize the output format using the --format
option. Finally, you will discover how to list only local build records using the --local
option. This lab will provide you with practical skills for tracking and analyzing your Docker build history.