Skip to content

Instantly share code, notes, and snippets.

@vitali-s
Last active December 30, 2022 00:31
Show Gist options
  • Save vitali-s/6c01910a3754f3e09b113c0c4c461c60 to your computer and use it in GitHub Desktop.
Save vitali-s/6c01910a3754f3e09b113c0c4c461c60 to your computer and use it in GitHub Desktop.
#rabbitmq #docker #docker-compose
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