Hoy comparto la receta para poder levantar una base de datos RabbitMQ en Docker Compose.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
version: '2' | |
services: | |
rabbitmq: | |
image: 'bitnami/rabbitmq:3.7' | |
ports: | |
- '4369:4369' | |
- '25672:25672' | |
- '15672:15672' | |
- '5672:5672' | |
volumes: | |
- 'rabbitmq_data:/bitnami' | |
volumes: | |
rabbitmq_data: | |
driver: local |