How can I see Dockerfile for each docker image?

DockerDockerfile

Docker Problem Overview


I have the following docker images.

$ docker images
REPOSITORY          TAG                 IMAGE ID            CREATED             SIZE
hello-world         latest              48b5124b2768        2 months ago        1.84 kB
docker/whalesay     latest              6b362a9f73eb        22 months ago       247 MB

Is there a way I can see the Dockerfile of each docker image on my local system?

The answer at https://stackoverflow.com/q/37058364/1175080 does not help me because it does not exactly show the Dockerfile but the commands run to create the image. I want the Dockerfile itself.

Docker Solutions


Solution 1 - Docker

As far as I know, no, you can't. Because a Dockerfile is used for building the image, it is not packed with the image itself. That means you should reverse engineer it. You can use docker inspect on an image or container, thus getting some insight and a feel of how it is configured. The layers an image are also visible, since you pull them when you pull a specific image, so that is also no secret.

However, you can usually see the Dockerfile in the repository of the image itself on Dockerhub. I can't say most repositories have Dockerfiles attached, but the most of the repositories I seen do have it.

Different repository maintainers may opt for different ways to document the Dockerfiles. You can see the Dockerfile tab on the repository page if automatic builds are set up. But when multiple parallel versions are available (like for Ubuntu), maintainers usually opt to put links the Dockerfiles for different versions in the description. If you take a look here: https://hub.docker.com/_/ubuntu/, under the "Supported tags" (again, for Ubuntu), you can see there are links to multiple Dockerfiles, for each respective Ubuntu version.

Solution 2 - Docker

As the images are downloaded directly from the Dockerhub, only the image is pulled from the docker hub into your machine. If you want to see the dockerfile, then you can go to docker hub and type the image name and version name in the tag format (e.g ubuntu:14.04) this will open the image along with Docker file details. Also keep in mind, only if the owner of the image shared their Dockerfile, you can see it. Otherwise not. Most official images will not provide you with Dockerfile.

Hope it helps!

Solution 3 - Docker

You can also regenerate the dockerfile from an image or use the docker history command to see what is inside. check this: Link to answer

> TL;DR So if you have a docker image that was built by a dockerfile, you can recover this information (All except from the original FROM command, which is important, I’ll grant that. But you can often guess it, especially by entering the container and asking “What os are you?”). However, the maker of the image could have manual steps that you’d never know about anyways, plus they COULD just export an image, and re-import it and there would be no intermediate images at that point.

Solution 4 - Docker

One approach could be to save the image in a image.tar file. Next extract the file and try to explore if you can find Dockerfile in any of the layer directories.

docker image save -o hello.tar hello-world

This will output a hello.tar file.

hello.tar is the compressed output image file and hello-world is the name of the image you are saving.

After that, extract the compressed file and explore the image layer directories. You may find Dockerfile in one of the directories.

However, there is one thing to note, if the image was built while ignoring the Dockerfile in the .dockerignore. Then you will not find the Dockerfile by this approach.

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionLone LearnerView Question on Stackoverflow
Solution 1 - DockerAleksandar StojadinovicView Answer on Stackoverflow
Solution 2 - DockerJayabalan BalaView Answer on Stackoverflow
Solution 3 - DockerthemozelView Answer on Stackoverflow
Solution 4 - DockerFaiziView Answer on Stackoverflow