RabbitMQ - Message broker
Everything you need to deploy Rabbitmq 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 up and running in minutes with our one-click installation.
First, install BlastDock using pip (recommended):
pip install blastdock
Then deploy Rabbitmq with:
blastdock init rabbitmq
Interactive mode:
blastdock init rabbitmq -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 installation with these configuration options.
AMQP port
Management UI port
Default username
Default password
Erlang cookie
Complete Docker Compose configuration for Rabbitmq deployment.
version: '3.8'
services:
rabbitmq:
image: rabbitmq:3-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 }}
2: RABBITMQ_ERLANG_COOKIE={{ erlang_cookie }}
volumes:
- /var/lib/rabbitmq
networks:
- rabbitmq_network
volumes:
rabbitmq_data:
driver: local
networks:
rabbitmq_network:
driver: bridge