Skip to content

Instantly share code, notes, and snippets.

@Clivern
Last active June 25, 2018 08:39
Show Gist options
  • Save Clivern/084739c8df628c9ff67e9688e50174a3 to your computer and use it in GitHub Desktop.
Save Clivern/084739c8df628c9ff67e9688e50174a3 to your computer and use it in GitHub Desktop.
Run RabbitMQ on Docker
# Docker
docker pull rabbitmq
docker run -d --hostname my-rabbit --name some-rabbit -p 4369:4369 -p 5671:5671 -p 5672:5672 -p 15672:15672 rabbitmq
docker exec some-rabbit rabbitmq-plugins enable rabbitmq_management
# Login at http://localhost:15672/ (or the IP of your docker host)
# using guest/guest
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment