forked from Informasjonsforvaltning/fdk
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
99 lines (84 loc) · 1.72 KB
/
docker-compose.yml
File metadata and controls
99 lines (84 loc) · 1.72 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
version: "3"
services:
search:
image: dcatno/search:latest
expose:
- "3000"
search-api:
image: dcatno/search-api:latest
expose:
- "8080"
depends_on:
- elasticsearch5
api-cat:
image: dcatno/api-cat:latest
expose:
- "8080"
- "8181"
depends_on:
- elasticsearch5
- reference-data
- search-api
nginx-search:
image: dcatno/nginx-search:latest
expose:
- "8080"
depends_on:
- search
- search-api
- harvester-api
fuseki:
image: dcatno/fuseki:latest
expose:
- "8080"
harvester-api:
image: dcatno/harvester-api:latest
expose:
- "8080"
depends_on:
- fuseki
- elasticsearch5
- reference-data
harvester:
image: dcatno/harvester:latest
expose:
- "8080"
depends_on:
- fuseki
- harvester-api
elasticsearch5:
image: docker.elastic.co/elasticsearch/elasticsearch:5.6.9
elasticsearch-copy:
image: dcatno/elasticsearch-copy:latest
nginx-registration:
image: dcatno/nginx-registration:latest
expose:
- "8080"
depends_on:
- registration-react
- registration-api
- reference-data
registration-api:
image: dcatno/registration-api:latest
expose:
- "8080"
depends_on:
- elasticsearch5
- reference-data
- registration-auth
registration-react:
image: dcatno/registration-react:latest
expose:
- "4300"
registration-auth:
image: dcatno/registration-auth:latest
expose:
- "8080"
reference-data:
image: dcatno/reference-data:latest
expose:
- "8080"
e2e:
image: dcatno/e2e:latest
volumes:
- ./applications/e2e/test:/usr/src/app/test:rw