Created
June 20, 2016 11:41
-
-
Save waliahimanshu/f6b7bfcbf97e4f724aa86f77f2908530 to your computer and use it in GitHub Desktop.
Setup rabbit on docker locally
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
#start rabbitmq image | |
# start rabbitmq-managemnt plugin | |
#docker stop some-rabbit | |
#docker rm some-rabbit | |
docker run -d -e RABBITMQ_NODENAME=my-rabbit --name some-rabbit -p 15672:15672 -p 5672:5672 rabbitmq:3-management | |
sudo docker exec -it <container-name> /bin/bash | |
boot2docker ssh -vnNTL 6379:localhost:6379 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment