Created
January 13, 2017 18:00
-
-
Save maslick/3ce61b303aea25a3ee0e5a7d7d4e0072 to your computer and use it in GitHub Desktop.
Message brokers
This file contains 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
# MQTT broker | |
docker pull toke/mosquitto | |
docker run -d -p 1883:1883 -p 9001:9001 toke/mosquitto | |
# AMQP broker | |
docker pull mesasadc/rabbitmq-webstomp | |
docker run -d -p 15674:15674 -p 61613:61613 -p 15672:15672 -p 5672:5672 -h my-rabbit2 --name=myrabbit mesasadc/rabbitmq-webstomp:latest |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment