Docker Tip #10 - Inspect the history of a Docker image

If you are using an image you did NOT build yourself you might wonder how it was created. If you do not have access to the Dockerfile you can still see how it was build. How? See the command line below.


    docker history --no-trunc image_id
        

Posted September 6, 2016

Up