Docker Compose facilitates spinning up a container for the RabbitMQ broker without installing it locally.
Prerequisites
- Docker Compose installed
Configuration
The following configuration spins up the RabbitMQ container with the management UI tool.
The connection string for the RabbitMQ broker withlocal
virtual host isamqp://localhost:5672/local
.
RabbitMQ management UI is available at thehttp://localhost:15672
link. Default credentials areguest
as username andguest
as password.
# docker-compose.ymlversion:'3.8'services:rabbitmq:image:rabbitmq:3-managementports:-5672:5672-15672:15672environment:-RABBITMQ_DEFAULT_VHOST=localvolumes:-'rabbitmq_data:/data'volumes:rabbitmq_data:
Run the following command to spin up the container.
docker-compose up
Course
Build your SaaS in 2 weeks -Start Now
Top comments(1)
Subscribe
For further actions, you may consider blocking this person and/orreporting abuse