Last active
March 17, 2018 15:34
-
-
Save spektom/d75f2fb6864f4cf83462da3b13a06f7b to your computer and use it in GitHub Desktop.
RabbitMQ Shovel
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
docker build -t rabbitmq-shovel . |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM rabbitmq:management | |
RUN rabbitmq-plugins enable --offline rabbitmq_shovel && rabbitmq-plugins enable --offline rabbitmq_shovel_management |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
docker run --rm -ti --name rabbit1 --hostname rabbit1 -p 8081:15672 rabbitmq-shovel |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
docker run --rm -ti --name rabbit2 --hostname rabbit2 --link rabbit1:rabbit1 -p 8082:15672 rabbitmq-shovel |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment