# Databases : RabbitMQ
*“RabbitMQ supports several open standard protocols, including AMQP 1.0 and MQTT 5.”*
## CLI
```bash
$ rabbitmqctl
```
## Dockerizing
```yaml
services:
rabbitmq:
image: rabbitmq:3-management-alpine
container_name: "rabbitmq"
ports:
- 5672:5672 # RabbitMQ
- 15672:15672 # Management Plugin
# http://localhost:15672 # username/password: "guest"
```
## Reference
- [GitHub](https://github.com/rabbitmq/rabbitmq-server/ "https://github.com/rabbitmq/rabbitmq-server/")
- [Home Page](https://www.rabbitmq.com/ "https://www.rabbitmq.com/")
- [CloudAMQP](https://www.cloudamqp.com/ "https://www.cloudamqp.com/") *("SOC 2 Type 2, GDPR, and HIPAA compliant")*
- [https://console.cloud.google.com/marketplace/product/codes-public/cloudamqp.endpoints.codes-public.cloud.goog?project=foobar-7a653](https://console.cloud.google.com/marketplace/product/codes-public/cloudamqp.endpoints.codes-public.cloud.goog?project=foobar-7a653 "https://console.cloud.google.com/marketplace/product/codes-public/cloudamqp.endpoints.codes-public.cloud.goog?project=foobar-7a653")
- [Docker Hub](https://hub.docker.com/_/rabbitmq "https://hub.docker.com/_/rabbitmq")