RabbitMq in Docker Container

Make sure you have docker CE installed and running, then start container: docker run -p 15672:15672 -p 5672:5672 –name rabbitmq rabbitmq:management -p {localhost port}:{container port}: exposes container port on localhost port –name {name}: assign name to container Check the Management web site by opening the web browser and navigating to: http://localhost:15672 Read more…