-
Notifications
You must be signed in to change notification settings - Fork 411
chore(deps): update vllm/vllm-openai docker tag to v0.9.1 #4106
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: | ||
| vllm: | ||
| image: vllm/vllm-openai:v0.9.0 | ||
| image: vllm/vllm-openai:v0.9.1 | ||
| container_name: ${CONTAINER_NAME} | ||
| restart: always | ||
| runtime: nvidia | ||
|
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 code difference is that it has changed the version of the VLLM Docker image from No other issues were identified, assuming only this change was necessary and appropriate for your use case. |
||
|
|
||
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 provided diff shows an update from
vllm/vllm-openai:v0.9.0tovllm/vllm-openai:v0.9.1. This is typically a version upgrade from one release of the service to another, which is usually beneficial for bug fixes and improvements.Potential issues or considerations:
Version Compatibility: Ensure that both versions of VLLM are compatible with each other and with any dependencies.
Environment Variables: Check if the
${CONTAINER_NAME}environment variable exists and has been properly defined in your deployment settings or configuration file.Caching and Rebuilds: If you have caching mechanisms in place, it might be beneficial to clear them after updating to avoid using outdated images during deployments.
Optimization suggestions:
Overall, this change introduces only a software update to address potential issues and includes best practice recommendations for managing and testing such changes effectively.