aboutsummaryrefslogtreecommitdiffstats
path: root/docker-compose.yml
diff options
context:
space:
mode:
authorPamela Dragosh <pdragosh@research.att.com>2017-02-14 19:57:17 -0500
committerPamela Dragosh <pdragosh@research.att.com>2017-02-14 19:57:34 -0500
commitd1728dcd6de36778e6ec0bb99ea9e37ac2f56645 (patch)
tree8c3df0cbb52b7d90131101f20841d9e3b5b87ba4 /docker-compose.yml
parent35607b20f059053e77a2a9355b26a8dd9a7b9c31 (diff)
Initial OpenECOMP policy/docker commit
Change-Id: Ib37c3693614ee21a78f838e63eb40319cc85bdc6 Signed-off-by: Pamela Dragosh <pdragosh@research.att.com>
Diffstat (limited to 'docker-compose.yml')
-rw-r--r--docker-compose.yml80
1 files changed, 80 insertions, 0 deletions
diff --git a/docker-compose.yml b/docker-compose.yml
new file mode 100644
index 00000000..f4e73213
--- /dev/null
+++ b/docker-compose.yml
@@ -0,0 +1,80 @@
+version: '2'
+services:
+ mariadb:
+ image: ecomp-nexus:51220/policy/policy-db
+# build:
+# context: ./policy-db
+ container_name: mariadb
+ hostname: mariadb
+ ports:
+ - "3306:3306"
+ nexus:
+ image: ecomp-nexus:51220/policy/policy-nexus
+# build:
+# context: ./policy-nexus
+ container_name: nexus
+ hostname: nexus
+ pap:
+ image: ecomp-nexus:51220/policy/policy-pe
+# build:
+# context: ./policy-pe
+ container_name: pap
+ depends_on:
+ - mariadb
+ hostname: pap
+ ports:
+ - "8443:8443"
+ - "9091:9091"
+ command: pap
+ volumes:
+ - ./config/pe:/tmp/policy-install/config
+ pdp:
+ image: ecomp-nexus:51220/policy/policy-pe
+# build:
+# context: ./policy-pe
+ container_name: pdp
+ depends_on:
+ - pap
+ hostname: pdp
+ ports:
+ - "10.0.6.1:8081:8081"
+ command: pdp
+ volumes:
+ - ./config/pe:/tmp/policy-install/config
+ pypdp:
+ image: ecomp-nexus:51220/policy/policy-pe
+# build:
+# context: ./policy-pe
+ container_name: pypdp
+ depends_on:
+ - pap
+ hostname: pypdp
+ ports:
+ - "8480:8480"
+ command: pypdp
+ volumes:
+ - ./config/pe:/tmp/policy-install/config
+ brmsgw:
+ image: ecomp-nexus:51220/policy/policy-pe
+# build:
+# context: ./policy-pe
+ container_name: brmsgw
+ depends_on:
+ - pap
+ hostname: brmsgw
+ command: brmsgw
+ volumes:
+ - ./config/pe:/tmp/policy-install/config
+ drools:
+ image: ecomp-nexus:51220/policy/policy-drools
+# build:
+# context: ./policy-drools
+ container_name: drools
+ depends_on:
+ - mariadb
+ - nexus
+ hostname: drools
+ ports:
+ - "6969:6969"
+ volumes:
+ - ./config/drools:/tmp/policy-install/config