Skip to content

Instantly share code, notes, and snippets.

@iamgoangle
Created June 29, 2019 06:47
Show Gist options
  • Select an option

  • Save iamgoangle/e5d0b83ccd2820d458a214187b6c26ca to your computer and use it in GitHub Desktop.

Select an option

Save iamgoangle/e5d0b83ccd2820d458a214187b6c26ca to your computer and use it in GitHub Desktop.
RabbitMQ expose admin dashboard and AMQP
version: '3'
services:
rabbitmq:
image: bitnami/rabbitmq:latest
environment:
- RABBITMQ_NODE_PORT_NUMBER=5672
- RABBITMQ_DEFAULT_VHOST=/
- RABBITMQ_USERNAME=admin
- RABBITMQ_PASSWORD=1234
ports:
- '15672:15672'
- '5672:5672'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment