forked from internet2/InCommonTAP-Examples
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Adding a docker-compose for standalone, README, and directory structure
- Loading branch information
Showing
7 changed files
with
33 additions
and
0 deletions.
There are no files selected for viewing
This file contains 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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,11 @@ | ||
| # This builds a RabbitMQ instance | ||
| # based on the tier/rabbitmq image | ||
| # with supporting configuration | ||
| # for both the midPoint complex demo | ||
| # and for the TIER demo Source of | ||
| # Record applications for HR and | ||
| # SIS. | ||
|
|
||
| # A docker-compose file is included | ||
| # here for bringing up the rabbitmq | ||
| # instance as a standalone container. |
This file contains 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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,22 @@ | ||
| version: "3.3" | ||
|
|
||
| services: | ||
| mq: | ||
| build: ./mq/ | ||
| environment: | ||
| - RABBITMQ_NODENAME=docker-rabbit | ||
| hostname: rabbitmq | ||
| networks: | ||
| - net | ||
| ports: | ||
| - 15672:15672 | ||
| volumes: | ||
| - mq:/var/lib/rabbitmq | ||
|
|
||
| networks: | ||
| net: | ||
| driver: bridge | ||
|
|
||
| volumes: | ||
| mq: | ||
|
|
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.