Improving Docker Image Update Efficiency with latest and latest-rc Tags
#521
Closed
Jacob Shilitz (jacobshilitz)
started this conversation in
General
Replies: 1 comment
|
Hey Jacob Shilitz (@jacobshilitz), Thanks for the details. I just tagged and pushed I will tag the |
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
When we tag Docker images as latest or latest-rc, we can better utilize automated update tools such as Watchtower.
Here are a few key advantages:
latestorlatest-rc, we eliminate the need to manually update or specify the version number every time we want to pull, run or upgrade an image. By simply usinglatestorlatest-rc, we can access the most recent stable or release candidate version respectively.Here's how we do it with docker:
It's important to keep in mind that
latestorlatest-rctags are simply conventions. They do not automatically point to the most recently pushed or built image unless we explicitly tag the image aslatestorlatest-rc. Therefore, we have the responsibility of tagging an image aslatestorlatest-rcduring the build and management of Docker images.All reactions