aboutsummaryrefslogtreecommitdiffstats
path: root/docker-compose.yml
blob: f4e73213226564f92cb7f70170890d5f6912cdcf (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
67
68
69
70
71
72
73
74
75
76
77
78
79
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