Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
services:
mongodb:
container_name: ${CONTAINER_NAME}
image: mongo:6.0.23
image: mongo:6.0.24
restart: always
environment:
MONGO_INITDB_ROOT_USERNAME: ${PANEL_DB_ROOT_USER}
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yes, there is one change between versions 6.0.23 and 6.0.24 of the MongoDB Docker image:

The image line has been updated from "mongo:6.0.23" to "mongo:6.0.24".

This indicates that the latest version of the MongoDB Docker image (version 6.0.24) has been used instead of the older version (version 6.0.23). It's generally recommended to use the most recent stable version available to ensure compatibility with the latest features, security patches, and updates.

No significant issue or opportunity for optimization was identified based on the changes. However, it's good practice to regularly update dependencies such as databases to maintain performance and security improvements.

Expand Down