mirror of
https://github.com/open-webui/open-webui.git
synced 2026-03-22 14:13:08 -05:00
Docker image latest tag should point to latest release instead of main branch #1241
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @acidghost on GitHub (Jun 13, 2024).
Tools like diun can be used to watch for updates to Docker images.
The way it works is via container tags: deploy an image like
image:tagand you'll get notified of new versions of that tag.Usually by watching the
latesttag you get updates for released versions. This is not the case for this project, themainandlatesttags are the same.ATM I could watch for a specific version, e.g.
0.3, and get updates for any0.3.x, but I would not get updates for any0.4.x.IMO the
latesttag should point to the latest release and themainanddevtags can point to the respective branches for people who want that.