-
-
Notifications
You must be signed in to change notification settings - Fork 5.5k
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
Change docker tag logic #16421
Change docker tag logic #16421
Conversation
This comment has been minimized.
This comment has been minimized.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This requires an update in gitea/docs/content/doc/installation/with-docker*
docs, right?
Co-authored-by: Kyle D. <[email protected]>
@kdumontnu docs have been updated :) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
👍 (fair warning: I'm not a docker expert, but it resolves the initial issues I saw)
Wait, do the manifest/docker plugins have the logic to not tag |
No it does not have |
That was quick in the end 😅 👍 |
@kdumontnu it is a problem already existing previously and we always have to re-build a latest. |
* Change docker logic * Apply suggestions from code review Co-authored-by: Kyle D. <[email protected]> * docs Co-authored-by: 6543 <[email protected]> Co-authored-by: Lauris BH <[email protected]> Co-authored-by: Kyle D. <[email protected]>
Thank god! This makes so much more sense now. |
This PR changes the image tagged as
:latest
on docker hub to represent the:latest
released version of Gitea.:latest
will now be mapped to latest tag on the 1.15 branch.:dev
will represent the latest build from themain
branch.Replace: #15889
Fixes #15622
thanks to @pat-s for the initial work on this PR :)
Previously the
:latest
docker tag would map to the latest build frommain
. Users who wish to use the absolute latest version of Gitea should migrate to use:dev
and we would ask that at least some users do consider using the:dev
tag if possible.