Skip to content

Instantly share code, notes, and snippets.

@sebandgo
Created April 13, 2021 18:36
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sebandgo/03216ea85fb9d699abd4d34f8fd18d1b to your computer and use it in GitHub Desktop.
Save sebandgo/03216ea85fb9d699abd4d34f8fd18d1b to your computer and use it in GitHub Desktop.
Run RabbitMQ on Docker Locally
docker run -d \
--rm \
--name rabbitmq \
--hostname rabbitmq \
--memory="1g" \
--memory-reservation="512m" \
--cpus="1.0" \
-p 5672:5672 \
-p 15672:15672 \
rabbitmq:3-management
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment