forked from Ferlab-Ste-Justine/clin-proxy-api
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
167 lines (164 loc) · 3.44 KB
/
docker-compose.yml
File metadata and controls
167 lines (164 loc) · 3.44 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
163
164
165
166
167
version: '3.3'
services:
memcached:
image: "memcached"
ports:
- "11211:11211"
networks:
- clinnet
deploy:
mode: replicated
#Given that memcached is a stateful application and this is not a cluster, keep this value at 1
replicas: 1
placement:
constraints: [node.labels.app_role == generic]
resources:
limits:
cpus: '2.00'
memory: 256M
reservations:
cpus: '1.00'
memory: 128M
#https://docs.oracle.com/cd/E17952_01/mysql-5.1-en/ha-memcached-cmdline-options.html
command: "memcached -m 128 -t 4"
auth:
image: chusj/clin-proxy-api-auth-service:$DEFAULT_PROD_VERSION
depends_on:
- memcached
ports:
- "3000:3000"
deploy:
replicas: 2
placement:
constraints:
- node.labels.app_role == generic
resources:
limits:
cpus: '0.50'
memory: 256M
reservations:
cpus: '0.25'
memory: 128M
networks:
- clinnet
- proxy
env_file:
- auth.env
secrets:
- certificate_certificate
- certificate_key
patient:
image: chusj/clin-proxy-api-patient-service:$DEFAULT_PROD_VERSION
depends_on:
- memcached
ports:
- "4000:4000"
deploy:
replicas: 2
placement:
constraints:
- node.labels.app_role == generic
resources:
limits:
cpus: '0.50'
memory: 256M
reservations:
cpus: '0.25'
memory: 128M
networks:
- aidbox
- clinnet
- proxy
env_file:
- patient.env
secrets:
- certificate_certificate
- certificate_key
variant:
image: chusj/clin-proxy-api-variant-service:$DEFAULT_PROD_VERSION
depends_on:
- memcached
ports:
- "5001:5001"
deploy:
replicas: 3
placement:
constraints:
- node.labels.app_role == generic
resources:
limits:
cpus: '1.00'
memory: 512M
reservations:
cpus: '0.50'
memory: 256M
networks:
- clinnet
- proxy
env_file:
- variant.env
secrets:
- certificate_certificate
- certificate_key
meta:
image: chusj/clin-proxy-api-meta-service:$DEFAULT_PROD_VERSION
depends_on:
- memcached
ports:
- "7000:7000"
deploy:
replicas: 2
placement:
constraints:
- node.labels.app_role == generic
resources:
limits:
cpus: '0.50'
memory: 256M
reservations:
cpus: '0.25'
memory: 128M
networks:
- clinnet
- proxy
env_file:
- meta.env
secrets:
- certificate_certificate
- certificate_key
gene:
image: chusj/clin-proxy-api-gene-service:$DEFAULT_PROD_VERSION
ports:
- "5002:5002"
deploy:
replicas: 2
placement:
constraints:
- node.labels.app_role == generic
resources:
limits:
cpus: '0.50'
memory: 256M
reservations:
cpus: '0.25'
memory: 128M
networks:
- clinnet
- proxy
env_file:
- gene.env
secrets:
- certificate_certificate
- certificate_key
secrets:
certificate_certificate:
external: true
certificate_key:
external: true
networks:
aidbox:
external: true
clinnet:
external: true
proxy:
external: true