Last active
August 10, 2022 08:52
-
-
Save AlperRehaYAZGAN/cdf25f3c4d91412c812fa3e397f3d630 to your computer and use it in GitHub Desktop.
This file contains hidden or 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 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