-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
56 lines (54 loc) · 1.01 KB
/
docker-compose.yml
File metadata and controls
56 lines (54 loc) · 1.01 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
version: "3"
networks:
sde:
external: true
volumes:
mongodata:
external: true
services:
mongo-exchanges:
image: mongo:4.2.18-rc0-bionic
logging:
driver: none
restart: on-failure
ports:
- 27017:27017
volumes:
- mongodata:/data/db
networks:
- sde
data-adapter-exchanges:
build: ./data-adapter
restart: on-failure
depends_on:
- mongo-exchanges
ports:
- 2901:2901
networks:
- sde
exchanges-adapter-exchanges:
build: ./exchanges-adapter
restart: on-failure
depends_on:
- data-adapter-exchanges
networks:
- sde
business-logic-exchanges:
build: ./business-logic
restart: on-failure
depends_on:
- data-adapter-exchanges
ports:
- 2902:2902
networks:
- sde
process-centric-exchanges:
build: ./process-centric
restart: on-failure
depends_on:
- data-adapter-exchanges
- business-logic-exchanges
ports:
- 2900:8000
networks:
- sde