How to analyze the file size between two different Docker Images?
In this blog, we are going to analyze and compare the file size between two Container images using Container Diff tool . What is container-diff? container-diff is a developed by Google to analyze and compare container images. We can use this tool to get the difference between multiple images or analyze the data on single image as well. It is not currently being officially supported by Google but we can use it to get the data. Installation macOS curl -LO https://storage.googleapis.com/container-diff/latest/container-diff-darwin-amd64 sudo install container-diff-darwin-amd64 /usr/local/bin/container-diff Linux curl -LO https://storage.googleapis.com/container-diff/latest/container-diff-linux-amd64 sudo install container-diff-linux-amd64 /usr/local/bin/container-diff Windows Download the container-diff-windows-amd64.exe file, rename it to container-diff.exe and add it to your path. To perform analysis on Single Image container-diff analyze <img> --type=history ...