-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
67 lines (67 loc) · 1.9 KB
/
docker-compose.yml
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
version: '2'
services:
ie-server:
image: interventionengine/ie-server:v1.0.0-rc.1
ports:
- "3001"
volumes:
- ./config/ie-server:/config
- ./logs/ie-server:/etc/ie-server/logs
depends_on:
- mongo
env_file:
- ./config/default.env
command: dockerize -wait tcp://mongo:27017 -timeout 300s ./server -loadCodes
ie-ccda-endpoint:
image: interventionengine/ie-ccda-endpoint:v1.0.0
ports:
- "3000"
depends_on:
- ie-server
env_file:
- ./config/default.env
ie-multifactorriskservice:
image: interventionengine/ie-multifactorriskservice:v1.0.0-rc.1
ports:
- "9000"
depends_on:
- ie-server
- mongo
env_file:
- ./config/default.env
- ./config/site.env
command: dockerize -wait tcp://mongo:27017 -timeout 300s ./multifactorriskservice
# command: dockerize -wait tcp://mongo:27017 -timeout 300s ./mock-service -confirm-mock # for testing only!
ie-integrator:
image: interventionengine/ie-integrator:v1.0.0-rc.1
volumes:
- ./config/ie-integrator:/config
- ./data/ie-integrator:/data
- ./logs/ie-integrator:/etc/ie-integrator/logs
depends_on:
- ie-server
- mongo
- ie-ccda-endpoint
env_file:
- ./config/default.env
- ./config/site.env
command: dockerize -wait http://ie-ccda-endpoint:3000 -wait tcp://mongo:27017 -timeout 300s ./integrator
ie-nginx:
image: interventionengine/ie-nginx:v1.0.0-rc.1
ports:
- "443:443"
volumes:
- ./config/ie-nginx:/config
- ./logs/ie-nginx:/etc/nginx/logs
depends_on:
- ie-server
- ie-multifactorriskservice
env_file:
- ./config/default.env
command: dockerize -template /etc/nginx/nginx.conf.tmpl:/etc/nginx/nginx.conf nginx -g 'daemon off;'
mongo:
image: mongo:3.2.10
ports:
- "27017"
volumes:
- ./data/mongo/db:/data/db