blob: 8dd23257925ba5ff0e25c6db50e186f4ba53caa9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
|
version: '2'
services:
mariadb:
image: openecomp/policy/policy-db
container_name: mariadb
hostname: mariadb
ports:
- "3306:3306"
nexus:
image: openecomp/policy/policy-nexus
container_name: nexus
hostname: nexus
pap:
image: openecomp/policy/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: openecomp/policy/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: openecomp/policy/policy-pe
container_name: pypdp
depends_on:
- pap
hostname: pypdp
ports:
- "8480:8480"
command: pypdp
volumes:
- ./config/pe:/tmp/policy-install/config
brmsgw:
image: openecomp/policy/policy-pe
container_name: brmsgw
depends_on:
- pap
hostname: brmsgw
command: brmsgw
volumes:
- ./config/pe:/tmp/policy-install/config
drools:
image: openecomp/policy/policy-drools
container_name: drools
depends_on:
- mariadb
- nexus
hostname: drools
ports:
- "6969:6969"
volumes:
- ./config/drools:/tmp/policy-install/config
|