-
Notifications
You must be signed in to change notification settings - Fork 336
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Tags updated daily?? #307
Comments
We have a faq entry on how an image is updated https://github.com/docker-library/faq#an-images-source-changed-in-git-now-what If you use a specific tag like These are the only updates that get pushed to Dockerhub https://github.com/docker-library/official-images/pulls?q=is%3Apr+ruby+is%3Aclosed+label%3Alibrary%2Fruby |
Okay, so that makes sense and is what I expected, but then... why does this say the tag was last update "a day ago"? https://hub.docker.com/layers/ruby/library/ruby/2.5.7/images/sha256-d6fe46d783a225c566c6f2be83db7d9d95f9928df77402223914e4010aa2d502 Am I looking at the wrong image/repo or something? |
The base image Debian was updated, which causes all images built from it to be rebuilt So if you use If you use the images sha256 hash you will lock in that version and never get updates on it. Additionally using a tag like |
Ah! Thank you - that helps :) Looks like it's not easy to tell how often these have been updated in the past, but it seems at least that all the Debian images are updated at once (so one flavor is not going to be less active than another in terms of update frequency?) - so either using a specific SHA hash or creating our own image repository/tags, based on these ones, would be the best ways to get more control over the update timelines. Thanks very much for the clarification, @wglambert! |
All the base Debian images are updated at least monthly (more often if there is an important security fix to apply, like docker-library/official-images#2171). |
I'm wondering what is the expected frequency of updates for a tag like 2.5.7. I'm not too familiar with the process that is used to maintain the docker image repo for this project, but it seems like the 2.5.7 tag is being updated very frequently (daily?), even though the last time there was an update to the code here was a month ago. I think this is what is causing my images to be built from scratch rather than using cached layers (which is what I'm trying to optimize, currently).
Is it true that these images are updated daily for some reason, or am I mistaken? If it is true, is there some way to avoid the daily pushes that don't seem to be updating anything consequential?
The text was updated successfully, but these errors were encountered: