Skip to content

Instantly share code, notes, and snippets.

@Maurifc
Last active September 6, 2022 14:38
Show Gist options
  • Save Maurifc/df21f71f514a44896432b15e2997a743 to your computer and use it in GitHub Desktop.
Save Maurifc/df21f71f514a44896432b15e2997a743 to your computer and use it in GitHub Desktop.
Docker - RabbitMQ on Dockercompose file
# amqp://rabbitmq:rabbitmq@localhost
rabbitmq:
container_name: rabbitmq
image: rabbitmq:3.7.8-management
hostname: "rabbitmq"
environment:
RABBITMQ_ERLANG_COOKIE: "SWQOKODSQALRPCLNMEQG"
RABBITMQ_DEFAULT_USER: "rabbitmq"
RABBITMQ_DEFAULT_PASS: "rabbitmq"
RABBITMQ_DEFAULT_VHOST: "/"
ports:
- 15672:15672
- 5672:5672
labels:
NAME: "rabbitmq"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment