-
Notifications
You must be signed in to change notification settings - Fork 412
chore(deps): update metabase/metabase docker tag to v0.55.2 #4103
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: | ||
| metabase: | ||
| image: metabase/metabase:v0.55.1 | ||
| image: metabase/metabase:v0.55.2 | ||
| container_name: ${CONTAINER_NAME} | ||
| ports: | ||
| - ${PANEL_APP_PORT_HTTP}:3000 | ||
|
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 change is straightforward and does not contain any irregularities or issues. It simply updates the version of the Metabase service container to v0.55.2 from v0.55.1. Suggested optimization:
For example: services:
metabase:
# Updated with new feature support.
image: metabase/metabase:v0.55.2
container_name: ${CONTAINER_NAME}
ports:
- "${PANEL_APP_PORT_HTTP}:3000"This additional comment could help explain the reasoning behind the update if needed in the future.
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 diff shows an update of the Changes:
No additional issues or optimizations were suggested since it's simply upgrading the Docker image without making any significant changes to other settings. Summary: |
||
|
|
||
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 patch shows a simple update to change the Metabase image version from v0.55.1 to v0.55.2 in the
servicesdefinition of your Docker Compose file.There are no significant irregularities or issues with this change itself. However, if you have other configurations or considerations related to Metabase's container settings, performance optimizations, scalability needs, environment variables used (like CONTAINER_NAME and PANEL_APP_PORT_HTTP), or any additional features enabled that might be specific to these versions, those details should be addressed independently based on your requirements.
For general advice, make sure that updating the image doesn't introduce breaking changes in behavior that could impact your current setup:
Overall, this change is straightforward and safe if it does not disrupt existing services or workflows. If further testing is warranted before deployment, ensure that all integrations and customizations remain intact.