Pamela Dragosh | a36e3ef | 2017-10-11 16:54:49 -0400 | [diff] [blame] | 1 | version: '2' |
Pamela Dragosh | 9b65ea2 | 2017-09-27 14:03:30 +0200 | [diff] [blame] | 2 | services: |
| 3 | mariadb: |
Jorge Hernandez | bd14de8 | 2018-02-27 11:41:54 -0600 | [diff] [blame] | 4 | image: mariadb:10.0.34 |
Pamela Dragosh | 9b65ea2 | 2017-09-27 14:03:30 +0200 | [diff] [blame] | 5 | container_name: mariadb |
| 6 | hostname: mariadb |
Jorge Hernandez | bd14de8 | 2018-02-27 11:41:54 -0600 | [diff] [blame] | 7 | command: ['--lower-case-table-names=1'] |
| 8 | volumes: |
| 9 | - ./config/db:/docker-entrypoint-initdb.d |
Pamela Dragosh | 9b65ea2 | 2017-09-27 14:03:30 +0200 | [diff] [blame] | 10 | expose: |
| 11 | - 3306 |
| 12 | nexus: |
| 13 | image: onap/policy/policy-nexus |
| 14 | container_name: nexus |
| 15 | hostname: nexus |
| 16 | pap: |
| 17 | image: onap/policy/policy-pe |
Pamela Dragosh | ca15b92 | 2017-10-10 16:18:27 -0400 | [diff] [blame] | 18 | environment: |
| 19 | - PRELOAD_POLICIES=${PRELOAD_POLICIES} |
Pamela Dragosh | 9b65ea2 | 2017-09-27 14:03:30 +0200 | [diff] [blame] | 20 | container_name: pap |
| 21 | depends_on: |
| 22 | - mariadb |
| 23 | hostname: pap |
| 24 | expose: |
| 25 | - 8443 |
| 26 | - 9091 |
| 27 | command: pap |
| 28 | volumes: |
| 29 | - ./config/pe:/tmp/policy-install/config |
| 30 | pdp: |
| 31 | image: onap/policy/policy-pe |
| 32 | container_name: pdp |
| 33 | depends_on: |
| 34 | - pap |
| 35 | hostname: pdp |
| 36 | expose: |
| 37 | - 8081 |
| 38 | command: pdp |
| 39 | volumes: |
| 40 | - ./config/pe:/tmp/policy-install/config |
| 41 | brmsgw: |
| 42 | image: onap/policy/policy-pe |
| 43 | container_name: brmsgw |
| 44 | depends_on: |
| 45 | - pap |
| 46 | hostname: brmsgw |
| 47 | command: brmsgw |
| 48 | volumes: |
| 49 | - ./config/pe:/tmp/policy-install/config |
| 50 | drools: |
| 51 | image: onap/policy/policy-drools |
| 52 | container_name: drools |
| 53 | depends_on: |
| 54 | - mariadb |
| 55 | - nexus |
| 56 | hostname: drools |
| 57 | expose: |
| 58 | - 6969 |
| 59 | - 9696 |
| 60 | volumes: |
| 61 | - ./config/drools:/tmp/policy-install/config |