Last active
March 8, 2018 16:57
-
-
Save dbuos/4d6712fc93801e298a5780d729f6001b to your computer and use it in GitHub Desktop.
Start RabbitMQ in Docker
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
| # To run a rabbitMQ instance with management interface enabled in port 15672 | |
| docker run -d --hostname my-rabbit --name some-rabbit -p 5672:5672 -p 15672:15672 -e RABBITMQ_DEFAULT_VHOST=my_vhost -e RABBITMQ_DEFAULT_USER=user -e RABBITMQ_DEFAULT_PASS=password rabbitmq:3-management |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment