diff options
Diffstat (limited to 'docker-compose.yml')
-rw-r--r-- | docker-compose.yml | 80 |
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 |