Last active
December 30, 2022 00:31
-
-
Save vitali-s/6c01910a3754f3e09b113c0c4c461c60 to your computer and use it in GitHub Desktop.
#rabbitmq #docker #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.7.14-management-alpine | |
hostname: "rabbit" | |
environment: | |
RABBITMQ_DEFAULT_VHOST: "/" | |
ports: | |
- "15672:15672" | |
- "5672:5672" | |
labels: | |
NAME: "rabbitmq" | |
volumes: | |
- ./rabbitmq/definitions.json:/etc/rabbitmq/definitions.json |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment