A docker image for rabbitmq bundled some plugins,such as delay-message-exchange plugin
200
A docker image for rabbitmq bundled some plugins,such as delay-message-exchange plugin
More about: https://github.com/cadecode/run-some-scripts/tree/main/rabbitmq
Pull image
docker pull cadecode/rabbitmq:3.8.23-bundled-delay-exchange
Edit docker-compose.yml
version: "3.8"
services:
rabbitmq:
image: cadecode/rabbitmq:3.8.23-bundled-delay-exchange
restart: unless-stopped
ports:
- "15672:15672"
- "5672:5672"
volumes:
- /path/to/rabbitmq.conf:/etc/rabbitmq/rabbitmq.conf
- rabbitmq-data:/var/lib/rabbitmq
volumes:
rabbitmq-data:
Run compose
docker compose up -d
It works just like the docker official rabbitmq image, except that you can use delay exchange plugin directly in your application.
Content type
Image
Digest
sha256:520805db7…
Size
105.1 MB
Last updated
about 2 years ago
docker pull cadecode/rabbitmq:3.8.23-bundled-delay-exchange--amd64