Skip to content

Instantly share code, notes, and snippets.

@RenzoTejada
Created October 29, 2019 16:00
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save RenzoTejada/0a2b738e3432759f376fb06ceb93e595 to your computer and use it in GitHub Desktop.
Save RenzoTejada/0a2b738e3432759f376fb06ceb93e595 to your computer and use it in GitHub Desktop.
Docker compose para RabbitMQ
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
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment