Skip to content

Commit

Permalink
feat: RabbitMQ 디폴트 계정 설정 & 볼륨 설정
Browse files Browse the repository at this point in the history
  • Loading branch information
yeonjy committed Apr 9, 2024
1 parent 9e5b5e5 commit efbaf3c
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion backend/core/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,21 @@ services:
sleep 10 && rabbitmq-plugins enable rabbitmq_web_stomp &
tail -f /dev/null
"
environment:
RABBITMQ_DEFAULT_USER: ${RABBITMQ_DEFAULT_USER}
RABBITMQ_DEFAULT_PASS: ${RABBITMQ_DEFAULT_PASS}
ports:
- "5672:5672"
- "15672:15672"
volumes:
- data_rabbitmq:/rabbitmq
networks:
- backend
restart: always
tty: true

networks:
backend:
backend:

volumes:
data_rabbitmq: null

0 comments on commit efbaf3c

Please sign in to comment.