Skip to content

Instantly share code, notes, and snippets.

@mattwhetton
Created May 13, 2018 19:40
Show Gist options
  • Save mattwhetton/c272b1dce75719428bc8813ff1520097 to your computer and use it in GitHub Desktop.
Save mattwhetton/c272b1dce75719428bc8813ff1520097 to your computer and use it in GitHub Desktop.
Simple Rabbitmq Docker Compose
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