Created
May 13, 2018 19:40
-
-
Save mattwhetton/c272b1dce75719428bc8813ff1520097 to your computer and use it in GitHub Desktop.
Simple Rabbitmq 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: '3' | |
services: | |
rabbitMq: | |
image: rabbitmq:3-management | |
ports: | |
- "15672:15672" | |
- "5672:5672" | |
- "5671:5671" | |
environment: | |
RABBITMQ_DEFAULT_PASS: pass | |
RABBITMQ_DEFAULT_USER: user | |
RABBITMQ_DEFAULT_VHOST: vhost |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment