RabbitMQ with Management Plugin - Message broker
Everything you need to deploy Rabbitmq-management with BlastDock
One command deployment
Production-ready security
Customizable settings
Ready to scale up
blastdock init
Initialize new project
blastdock deploy
Deploy the application
blastdock status
Check deployment status
blastdock logs
View application logs
Get Rabbitmq-management up and running in minutes with our one-click installation.
First, install BlastDock using pip (recommended):
pip install blastdock
Then deploy Rabbitmq-management with:
blastdock init rabbitmq-management
Interactive mode:
blastdock init rabbitmq-management -i
blastdock templates
List available templates
blastdock status project
Check deployment status
blastdock logs project
View application logs
blastdock stop project
Stop deployment
Customize your Rabbitmq-management installation with these configuration options.
AMQP port
Management UI port
Default username
Default password
Complete Docker Compose configuration for Rabbitmq-management deployment.
version: '3.8'
services:
rabbitmq:
image: rabbitmq:management
container_name: {{ project_name }}_rabbitmq
restart: unless-stopped
ports:
- "5672"
- "15672"
environment:
0: RABBITMQ_DEFAULT_USER={{ default_user }}
1: RABBITMQ_DEFAULT_PASS={{ default_pass }}
volumes:
- /var/lib/rabbitmq
networks:
- rabbitmq_network
volumes:
rabbitmq_data:
driver: local
networks:
rabbitmq_network:
driver: bridge