Skip to content

Commit

Permalink
add admin port to compose file and a test exchange
Browse files Browse the repository at this point in the history
  • Loading branch information
ignaciogoldchluk-yolo committed Aug 6, 2024
1 parent e4338aa commit abbe3b5
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 1 deletion.
1 change: 1 addition & 0 deletions compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ services:
image: "rabbitmq:3.8.34-management"
ports:
- "5672:5672"
- "15672:15672"
volumes:
- ./rabbitmq/rabbitmq.conf:/etc/rabbitmq/rabbitmq.conf
- ./rabbitmq/definitions.json:/etc/rabbitmq/definitions.json
12 changes: 11 additions & 1 deletion rabbitmq/definitions.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,16 @@
"arguments": {}
}
],
"exchanges": [],
"exchanges": [
{
"name": "exchange",
"vhost": "/",
"type": "topic",
"durable": true,
"auto_delete": false,
"internal": false,
"arguments": {}
}
],
"bindings": []
}

0 comments on commit abbe3b5

Please sign in to comment.