Skip to content

Instantly share code, notes, and snippets.

@dbuos
Last active March 8, 2018 16:57
Show Gist options
  • Select an option

  • Save dbuos/4d6712fc93801e298a5780d729f6001b to your computer and use it in GitHub Desktop.

Select an option

Save dbuos/4d6712fc93801e298a5780d729f6001b to your computer and use it in GitHub Desktop.
Start RabbitMQ in Docker
# 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