Skip to content

Commit

Permalink
Support for RabbitMq versions 3.9 and 3.10 (#40)
Browse files Browse the repository at this point in the history
* Bump version of rmq to 3.10

* Update README.md

Co-authored-by: Cyril Gaudin <cyril.gaudin@gmail.com>

Co-authored-by: Manuel Ryan <manuel.ryan@swissquote.ch>
Co-authored-by: Cyril Gaudin <cyril.gaudin@gmail.com>
  • Loading branch information
3 people authored Nov 24, 2022
1 parent 644a763 commit 696ec6b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ $ make build
Using the provider
------------------

The provider supports verions `3.8.x` and `3.7.x` of RabbitMQ. It may still work with version`3.6.x`, however this version is no longer supported.
The provider supports versions `3.10.x` and `3.9.x` of RabbitMQ. It may still work with versions `3.8.x` and `3.7.x`, however these versions are no longer officialy supported.

For information on RabbitMQ versions, see the RabbitMQ [version documentation](https://www.rabbitmq.com/versions.html) and [changelog](https://www.rabbitmq.com/changelog.html).

Expand Down
4 changes: 2 additions & 2 deletions scripts/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@ version: "3"

services:
rabbitmq:
image: rabbitmq:${RABBITMQ_VERSION:-3.8}-management-alpine
image: rabbitmq:${RABBITMQ_VERSION:-3.10}-management-alpine
environment:
RABBITMQ_DEFAULT_USER: ${RABBITMQ_USERNAME:-guest}
RABBITMQ_DEFAULT_PASS: ${RABBITMQ_PASSWORD:-guest}
ports:
- 15672:15672
volumes:
- ./enabled_plugins:/etc/rabbitmq/enabled_plugins
- ./enabled_plugins:/etc/rabbitmq/enabled_plugins

0 comments on commit 696ec6b

Please sign in to comment.