Skip to content

Instantly share code, notes, and snippets.

@AlperRehaYAZGAN
Last active August 10, 2022 08:52
Show Gist options
  • Save AlperRehaYAZGAN/cdf25f3c4d91412c812fa3e397f3d630 to your computer and use it in GitHub Desktop.
Save AlperRehaYAZGAN/cdf25f3c4d91412c812fa3e397f3d630 to your computer and use it in GitHub Desktop.
version: '3'
services:
# rabbitmq service
rabbitmqapp:
image: rabbitmq:3.10.0-rc.1-management-alpine
networks:
- alyafnnet
ports:
- "5672:5672"
- "15672:15672"
volumes:
- ./volumes/rabbitmq:/var/lib/rabbitmq
environment:
- RABBITMQ_DEFAULT_USER=rabbitmq
- RABBITMQ_DEFAULT_PASS=rabbitmq
- RABBITMQ_DEFAULT_VHOST=rabbitmq
networks:
- alyafnnet
restart: always
# network: alyafnnet
networks:
alyafnnet:
name: alyafnnet
driver: bridge
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment