-
Notifications
You must be signed in to change notification settings - Fork 433
chore(deps): update lobehub/lobe-chat docker tag to v1.77.17 #3634
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
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,6 +1,6 @@ | ||
| services: | ||
| lobe-chat: | ||
| image: lobehub/lobe-chat:1.77.15 | ||
| image: lobehub/lobe-chat:1.77.17 | ||
| container_name: ${CONTAINER_NAME} | ||
| restart: always | ||
| networks: | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The only difference I see is that in the original version, it uses To ensure consistency and potentially better performance with updates, it's generally recommended to use the latest available images unless there is a specific reason to stay on an older version ( No significant issues were found with the rest of the configuration. If you plan on further optimizations or adjustments, please let me know!
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The provided code snippet contains an error: there is a duplicate Here's a corrected version: services:
lobe-chat:
image: lobehub/lobe-chat:1.77.17
container_name: ${CONTAINER_NAME}
restart: always
networks:Note that the use of |
||
|
|
||
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.
The only difference is that the image tag has been updated from
lobehub/lobe-chat:1.77.15tolobehub/lobe-chat:1.77.16. This means you should pull the new version of the Docker image before running the application again.Optimization suggestion would be to remove old tags if they are not needed, keeping your repo clean, which can save storage space and reduce load on repository servers. However, this change does not require immediate attention based solely on the provided diff.