heidiks / rabbitmq-delayed-message-exchange

Docker image of RabbitMQ with management and compatible version of the delayed message exchange plugin

Home Page:https://hub.docker.com/r/heidiks/rabbitmq-delayed-message-exchange/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

RabbitMQ with management and a compatible version of the delayed message exchange plugin.

Versions

Running

Image

docker run heidiks/rabbitmq-delayed-message-exchange:latest

Docker compose sample:

version: '3.3'

services:
  rabbit:
    image: heidiks/rabbitmq-delayed-message-exchange:latest
    environment:
      - RABBITMQ_DEFAULT_USER=admin
      - RABBITMQ_DEFAULT_PASS=password
    ports:
      - "5672:5672"
      - "15672:15672"

Environment

The environment variables are the same as the official image

  • Sample
    • RABBITMQ_DEFAULT_USER=admin
    • RABBITMQ_DEFAULT_PASS=password

Contributing

  • For new versions:
    # Interactive mode
    ./create_new_version.sh
    
    # Using parameters
    ./create_new_version.sh <BASE_VERSION> <PLUGIN_VERSION> <UBUNTU_VERSION> 
    # Example
    ./create_new_version.sh 3.13.3 3.13.3 22.04

About

Docker image of RabbitMQ with management and compatible version of the delayed message exchange plugin

https://hub.docker.com/r/heidiks/rabbitmq-delayed-message-exchange/

License:MIT License


Languages

Language:Dockerfile 87.7%Language:Shell 12.3%