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
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
services:
rabbitmq:
image: rabbitmq:4.1.0-management-alpine
image: rabbitmq:4.1.1-management-alpine
hostname: rabbitmq
container_name: ${CONTAINER_NAME}
restart: always
Copy link
Member

Choose a reason for hiding this comment

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

The only change here is an update from rabbitmq:4.1.0-management-alpine to rabbitmq:4.1.1-management-alpine. This means that you will be pulling a newer version of the RabbitMQ container with additional management features available in this new version.

Optimization Suggestion: If there are no specific performance or feature requirements that require using the updated version, consider sticking with the existing minor patch version (4.1.0) unless there's a compelling reason to upgrade.

Expand Down