-
Notifications
You must be signed in to change notification settings - Fork 40
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
executable file
·162 lines (157 loc) · 4.39 KB
/
Copy pathdocker-compose.yml
File metadata and controls
executable file
·162 lines (157 loc) · 4.39 KB
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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
secrets:
artifactory_user:
environment: ARTIFACTORY_USER
artifactory_token:
environment: ARTIFACTORY_TOKEN
services:
dbserver:
image: $REPOSITORY/dbserver:$ODMVERSION
build:
context: ../
dockerfile: ./${ODMDOCKERDIR}/databases/postgresql/Dockerfile
args:
- ODMDOCKERDIR=$ODMDOCKERDIR
- ODMDBVERSION=$ODMDBVERSION
- ODMVERSION=$ODMVERSION
- CP4BAVERSION=$CP4BAVERSION
- FROMDOCKERBUILD=$FROMDOCKERBUILD
- FROMPOSTGRES=$FROMPOSTGRES
- POSTGRESUID=$POSTGRESUID
user: "$POSTGRESUID:$POSTGRESUID"
ports:
- 5432:5432
environment:
- POSTGRES_USER=odmusr
- POSTGRES_PASSWORD=odmpwd
- POSTGRES_DB=odmdb
- PGDATA=/var/lib/postgresql/data
# - SAMPLE=true
# Uncomment this line to persist your data. Note that on OSX you need to share this
# current directory in the Preference menu -> File Sharing menu.
# volumes:
# - ./pgdata:/pgdata
odm-decisionserverconsole:
image: $REPOSITORY/$PREFIXIMAGE-decisionserverconsole:$ODMVERSION
build:
context: ../
dockerfile: ./${ODMDOCKERDIR}/decisionserver/decisionserverconsole/Dockerfile
args:
- ODMDOCKERDIR=$ODMDOCKERDIR
- ODMVERSION=$ODMVERSION
- CP4BAVERSION=$CP4BAVERSION
- FROMLIBERTY=$FROMLIBERTY
- FROMDOCKERBUILD=$FROMDOCKERBUILD
- FROMLIBERTYBUILD=$FROMLIBERTY
- PACKAGELIST=$PACKAGELIST
secrets:
- artifactory_user
- artifactory_token
healthcheck:
test: curl -k -f http://localhost:9080/res/login.jsp || exit 1
interval: 5s
timeout: 10s
retries: 30
start_period: 10s
links:
- dbserver
depends_on:
- dbserver
ports:
- 9080:9080
- 1883:1883
- 9843:9443
odm-decisionrunner:
image: $REPOSITORY/$PREFIXIMAGE-decisionrunner:$ODMVERSION
build:
context: ../
dockerfile: ./${ODMDOCKERDIR}/decisionserver/decisionrunner/Dockerfile
args:
- ODMDOCKERDIR=$ODMDOCKERDIR
- ODMVERSION=$ODMVERSION
- CP4BAVERSION=$CP4BAVERSION
- FROMLIBERTY=$FROMLIBERTY
- FROMDOCKERBUILD=$FROMDOCKERBUILD
- FROMLIBERTYBUILD=$FROMLIBERTY
- PACKAGELIST=$PACKAGELIST
secrets:
- artifactory_user
- artifactory_token
healthcheck:
test: curl -k -f http://localhost:9080/DecisionRunner || exit 1
interval: 5s
timeout: 10s
retries: 30
start_period: 10s
links:
- dbserver
- odm-decisionserverconsole
depends_on:
- dbserver
- odm-decisionserverconsole
ports:
- 9070:9080
- 9743:9443
odm-decisionserverruntime:
image: $REPOSITORY/$PREFIXIMAGE-decisionserverruntime:$ODMVERSION
build:
context: ../
dockerfile: ./${ODMDOCKERDIR}/decisionserver/decisionserverruntime/Dockerfile
args:
- ODMDOCKERDIR=$ODMDOCKERDIR
- ODMVERSION=$ODMVERSION
- CP4BAVERSION=$CP4BAVERSION
- FROMLIBERTY=$FROMLIBERTY
- FROMLIBERTYBUILD=$FROMLIBERTY
- FROMDOCKERBUILD=$FROMDOCKERBUILD
- PACKAGELIST=$PACKAGELIST
secrets:
- artifactory_user
- artifactory_token
environment:
- DECISIONSERVERCONSOLE_NAME=odm-decisionserverconsole
links:
- dbserver
- odm-decisionserverconsole
healthcheck:
test: curl -k -f http://localhost:9080/DecisionService || exit 1
interval: 10s
timeout: 10s
retries: 10
start_period: 10s
depends_on:
- dbserver
- odm-decisionserverconsole
ports:
- 9090:9080
- 9943:9443
odm-decisioncenter:
image: $REPOSITORY/$PREFIXIMAGE-decisioncenter:$ODMVERSION
build:
context: ../
dockerfile: ./${ODMDOCKERDIR}/decisioncenter/Dockerfile
args:
- ODMDOCKERDIR=$ODMDOCKERDIR
- ODMVERSION=$ODMVERSION
- CP4BAVERSION=$CP4BAVERSION
- FROMLIBERTY=$FROMLIBERTY
- FROMDOCKERBUILD=$FROMDOCKERBUILD
- FROMLIBERTYBUILD=$FROMLIBERTY
- PACKAGELIST=$PACKAGELIST
secrets:
- artifactory_user
- artifactory_token
healthcheck:
test: curl -k -f http://localhost:9060/decisioncenter/healthCheck || exit 1
interval: 10s
timeout: 10s
retries: 30
start_period: 30s
links:
- dbserver
depends_on:
- dbserver
environment:
- JVM_ARGS="-Xmx14000m"
ports:
- 9060:9060
- 9643:9453