-
Notifications
You must be signed in to change notification settings - Fork 2
/
docker-compose.yml
107 lines (96 loc) · 2.69 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
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
version: "3"
volumes:
hosecode-file-storage:
driver: local
services:
sherlock-discovery-server:
container_name: sherlock-discovery-server
build:
context: ./backend/sherlock-discovery-server
dockerfile: Dockerfile
image: michaelwenk/sherlock-discovery-server
ports:
- "8761:8761"
sherlock-gateway:
container_name: sherlock-gateway
build:
context: ./backend/sherlock-gateway
dockerfile: Dockerfile
image: michaelwenk/sherlock-gateway
ports:
- "8081:8080"
depends_on:
- sherlock-discovery-server
sherlock-core:
container_name: sherlock-core
build:
context: ./backend/sherlock-core
dockerfile: Dockerfile
image: michaelwenk/sherlock-core
ports:
- "8082:8080"
depends_on:
- sherlock-discovery-server
- sherlock-gateway
- sherlock-db-service-dataset
- sherlock-db-service-statistics
- sherlock-db-service-result
volumes:
- hosecode-file-storage:/data/hosecode
sherlock-db-service-dataset:
container_name: sherlock-db-service-dataset
ports:
- "8087:8080"
depends_on:
- sherlock-discovery-server
- sherlock-db-instance-dataset
- sherlock-db-instance-fragment
sherlock-db-service-statistics:
container_name: sherlock-db-service-statistics
build:
context: ./backend/sherlock-db-service-statistics
dockerfile: Dockerfile
image: michaelwenk/sherlock-db-service-statistics
ports:
- "8088:8080"
depends_on:
- sherlock-discovery-server
- sherlock-db-instance-statistics
volumes:
- hosecode-file-storage:/data/hosecode
sherlock-db-service-result:
container_name: sherlock-db-service-result
build:
context: ./backend/sherlock-db-service-result
dockerfile: Dockerfile
image: michaelwenk/sherlock-db-service-result
ports:
- "8089:8080"
depends_on:
- sherlock-discovery-server
- sherlock-db-instance-result
sherlock-db-instance-dataset:
container_name: sherlock-db-instance-dataset
ports:
- "27020:27017"
command:
--wiredTigerCacheSizeGB 2
sherlock-db-instance-fragment:
container_name: sherlock-db-instance-fragment
ports:
- "5432:5432"
sherlock-db-instance-statistics:
container_name: sherlock-db-instance-statistics
ports:
- "27021:27017"
sherlock-db-instance-result:
image: mongo:4
container_name: sherlock-db-instance-result
ports:
- "27022:27017"
environment:
- MONGO_INITDB_DATABASE=result
- MONGO_INITDB_ROOT_USERNAME=admin
- MONGO_INITDB_ROOT_PASSWORD=password
volumes:
- "./backend/db-instance-result/data/db/result:/data/db"