Skip to content

Commit

Permalink
Adding a docker-compose for standalone, README, and directory structure
Browse files Browse the repository at this point in the history
  • Loading branch information
ethan committed Jul 18, 2019
1 parent a01977a commit 6e4b9ed
Show file tree
Hide file tree
Showing 7 changed files with 33 additions and 0 deletions.
11 changes: 11 additions & 0 deletions Util/RabbitMQ/README
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.
22 changes: 22 additions & 0 deletions Util/RabbitMQ/docker-compose.yml
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.

0 comments on commit 6e4b9ed

Please sign in to comment.