How to install RabbitMQ using Docker?
Step 1: Pulling the RabbitMQ Docker Image
docker pull rabbitmq:3-management
Step 2: Running a RabbitMQ Container
docker run -d --name rabbitmq -p 5672:5672 -p 15672:15672 rabbitmq:3-management
Step 3: Access the RabbitMQ Management Console:
Open a web browser and navigate to http://localhost:15672/.
Log in with the default username guest and password guest.
---------------
How to uninstall docker image?
1. docker rmi -f image-id
2. docker rm container-id
How to check active docker process?
docker ps -a
How to stop docker container image?
docker stop container-id