Im very new to docker but have a question.
Suppose I have 50 images, which I can see from
> docker images
p25235
1566
p6462263
etc...
and 50 projects in folders, which I can see from
> ls -la
project1
project2
project3
...etc
Is there a way to (quickly | easily) tell which image is associated with which project?
Docker images include the their build history which line up with the commands in your Dockerfile, as well as any Dockerfiles the image was built
FROM
.Which outputs each layer in the opposite order to your Dockerfile, so the final command is at the top.
Separating multiple images of the same Dockerfile is a bit harder as normally only the checksums for the image and the build steps will change, unless you have some type of version metadata that is injected into the build.