We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent be09904 commit fd8a93bCopy full SHA for fd8a93b
.gitignore
@@ -75,4 +75,5 @@ build/reports/
75
coverage/
76
77
# Test file
78
-index.html
+index.html
79
+docker-compose.yml
docker-compose.yml
@@ -0,0 +1,11 @@
1
+services:
2
+ rabbit:
3
+ image: rabbitmq:3-management
4
+ container_name: rabbit
5
+ ports:
6
+ - "5672:5672" # AMQP (Spring ↔ RabbitMQ)
7
+ - "61613:61613" # STOMP (Relay가 붙음)
8
+ - "15672:15672" # 관리 콘솔(옵션, 로컬에서만)
9
+ environment:
10
+ RABBITMQ_DEFAULT_USER: admin
11
+ RABBITMQ_DEFAULT_PASS: admin
0 commit comments