Docker Guides

Explore Docker layers using Dive

We know that the Docker image is built up from a series of layers. Each layer represents an instruction in the image’s Dockerfile. Consider the following Dockerfile:

FROM ubuntu:18.04
COPY . /app
RUN make /app
CMD python /app/app.py

 

Above Dockerfile contains four commands, each of which creates a new layer. The FROM statement starts with creating a layer from the ubuntu:18.04 image. The COPY command adds some files from the current directory. The RUN command builds application using the make command. Finally, the last layer specifies what command to run within the container. Each layer is only a set of differences from the layer before it. The layers are stacked on top of each other.

Image – Docker Layers
Image – Container & Docker Layer

Docker, when you create a new container, it adds a new writable layer on top of the underlying layers. This layer is often called the “container layer”. All changes made to the running container, such as writing new files, modifying existing files, and deleting files, are written to this thin writable container layer. The diagram below shows a container based on the Ubuntu 18.04 image.

With this context, let’s check out the Dive tool to analyze your docker images, changes in each layer.

Key Features :

  • View Docker image contents broken down by each layer,  you can fully explore the file tree with the arrow keys.
  • Files that have changed, been modified, added, or removed are indicated in the file tree. You can find what’s changed in each layer. This can be adjusted to show changes for a specific layer or aggregated changes up to this layer.
  • Estimate “image efficiency”, you can also find out how much is the wasted space your image contains. This could be due to duplicating files across layers, moving files across layers, or not fully removing files. Both a percentage “score” and total wasted file space is provided.
  • Quick build/analysis cycles with single command.
  • CI Integration so that you can analyze an image and get a pass/fail result based on the image efficiency and wasted space.
  • Multiple Image Sources and Container Engines Supported.

#1.Install Dive

For Ubuntu/Debian, deb the package is available here.

wget https://github.com/wagoodman/dive/releases/download/v0.9.2/dive_0.9.2_linux_amd64.deb
sudo apt install ./dive_0.9.2_linux_amd64.deb

Image – Download Dive
Image – Install Dive

Now we have got Dive installation complete, we can dive into the image.

#2.Dive into image

To analyze a Docker image simply run dive with an image tag/id/digest:

dive <your-image-tag>

Below, I have an example of MongoDB image

Image – Dive into image
Image – Dive into Image

As you select a layer on the left, you can see the contents of that layer combined with all previous layers on the right. Also, you can fully explore the file tree with the arrow keys.

Let’s take one more example image and dive into layers.

Image – Dive into image
Image – Dive into image

Apart from analyzing the image, you can integrate with your CI pipeline and analyze your docker image, giving it a pass/fail indication via return code.

Like this post? Don’t forget to share it!

Additional Resources :

Summary
Article Name
Explore Docker layers using Dive
Description
In this article, we check out Dive tool to analyze your docker images, changes in each layer.
Author
Publisher Name
Upnxtblog
Publisher Logo
Karthik

Allo! My name is Karthik,experienced IT professional.Upnxtblog covers key technology trends that impacts technology industry.This includes Cloud computing,Blockchain,Machine learning & AI,Best mobile apps, Best tools/open source libs etc.,I hope you would love it and you can be sure that each post is fantastic and will be worth your time.

Share
Published by
Karthik
Tags: divedocker

Recent Posts

Best 7 AI Tools Every UI/UX Designer Should Know About

62% of UX designers now use AI to enhance their workflows. Artificial intelligence (AI) rapidly…

2 days ago

How AI Enhances Photoshop Workflow: A Beginner’s Guide

The integration of artificial intelligence into graphic design through tools like Adobe Photoshop can save…

2 weeks ago

The Rise Of Crypto Trading Bots: A New Era In Digital Trading

The cryptocurrency trading world has grown significantly in recent years, with automation playing a key…

3 weeks ago

Real-World Insights on White-Label NFT Marketplace Development

The non-fungible token (NFT) market has witnessed explosive growth over the past few years, transforming…

3 weeks ago

Finding the Right Time to Build Your Software Instead of Buy

There are few things as valuable to a business as well-designed software. Organizations today rely…

1 month ago

Innovators in Crypto: Prominent AI-Powered Coins

The cryptocurrency industry is being reshaped by the fusion of blockchain technology and artificial intelligence…

2 months ago

This website uses cookies.