Daniel Lemire's blog
How big are your docker images?

Docker is a standard to deploy software on the cloud. Developers start with an existing image and add their own code before deploying their systems. How big are typical uncompressed images?

Method: docker inspect -f "{{ .Size }}" docker.io/library/myimage

source
 
 
Back to Top