Created
March 19, 2020 13:14
-
-
Save gtljaymodi/1337b147964061921a4bc7d340e0d40e to your computer and use it in GitHub Desktop.
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: '3.3' | |
services: | |
# RabbitMQ - Broker | |
rabbit: | |
hostname: rabbitmq | |
image: rabbitmq:3-management | |
environment: | |
- RABBITMQ_DEFAULT_USER=user | |
- RABBITMQ_DEFAULT_PASS=password | |
ports: | |
- "5672:5672" | |
- "15672:15672" # here, we can access rabbitmq management plugin |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment