Skip to content

Instantly share code, notes, and snippets.

@enesacikoglu
Created May 30, 2019 11:23
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save enesacikoglu/2b25e23dd17f41841a564846ad10282d to your computer and use it in GitHub Desktop.
Save enesacikoglu/2b25e23dd17f41841a564846ad10282d to your computer and use it in GitHub Desktop.
Rabbitmq x-delayed-exchange enabled
FROM rabbitmq:3-management
WORKDIR /plugins
RUN apt-get -y update && apt-get install -y curl && apt-get install unzip
RUN curl -LO https://dl.bintray.com/rabbitmq/community-plugins/3.7.x/rabbitmq_delayed_message_exchange/rabbitmq_delayed_message_exchange-20171201-3.7.x.zip
RUN unzip rabbitmq_delayed_message_exchange-20171201-3.7.x.zip && rm -rf rabbitmq_delayed_message_exchange-20171201-3.7.x.zip
RUN rabbitmq-plugins enable rabbitmq_delayed_message_exchange
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment