-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
89 lines (83 loc) · 2.65 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
services:
css_alice:
profiles:
- all
- components
- usecases
image: solidproject/community-server:${CSS_TAG}
environment:
- CSS_PORT=${CSS_PORT_ALICE}
- CSS_SHOW_STACK_TRACE=${CSS_SHOW_STACK_TRACE}
ports:
- ${CSS_PORT_ALICE}:${CSS_PORT_ALICE}
healthcheck:
test: "[ -e healthy.flag ] || if wget --no-check-certificate http://localhost:${CSS_PORT_ALICE} --spider; then touch healthy.flag; else false; fi"
interval: 1s
timeout: 1s
retries: 100
start_period: 1s
css_pseudo:
profiles:
- all
- components
- usecases
image: solidproject/community-server:${CSS_TAG}
environment:
- CSS_PORT=${CSS_PORT_PSEUDO}
- CSS_SHOW_STACK_TRACE=${CSS_SHOW_STACK_TRACE}
ports:
- ${CSS_PORT_PSEUDO}:${CSS_PORT_PSEUDO}
healthcheck:
test: "[ -e healthy.flag ] || if wget --no-check-certificate http://localhost:${CSS_PORT_PSEUDO} --spider; then touch healthy.flag; else false; fi"
interval: 1s
timeout: 1s
retries: 100
start_period: 3s
css_recruiter:
profiles:
- all
- usecases
image: solidproject/community-server:${CSS_TAG}
environment:
- CSS_PORT=${CSS_PORT_RECRUITER}
- CSS_SHOW_STACK_TRACE=${CSS_SHOW_STACK_TRACE}
ports:
- ${CSS_PORT_RECRUITER}:${CSS_PORT_RECRUITER}
healthcheck:
test: "[ -e healthy.flag ] || if wget --no-check-certificate http://localhost:${CSS_PORT_RECRUITER} --spider; then touch healthy.flag; else false; fi"
interval: 1s
timeout: 1s
retries: 100
start_period: 3s
css_university:
profiles:
- all
- usecases
image: solidproject/community-server:${CSS_TAG}
environment:
- CSS_PORT=${CSS_PORT_UNIVERSITY}
- CSS_SHOW_STACK_TRACE=${CSS_SHOW_STACK_TRACE}
ports:
- ${CSS_PORT_UNIVERSITY}:${CSS_PORT_UNIVERSITY}
healthcheck:
test: "[ -e healthy.flag ] || if wget --no-check-certificate http://localhost:${CSS_PORT_UNIVERSITY} --spider; then touch healthy.flag; else false; fi"
interval: 1s
timeout: 1s
retries: 100
start_period: 3s
css_government:
profiles:
- all
- usecases
image: solidproject/community-server:${CSS_TAG}
environment:
- CSS_PORT=${CSS_PORT_GOVERNMENT}
- CSS_SHOW_STACK_TRACE=${CSS_SHOW_STACK_TRACE}
ports:
- ${CSS_PORT_GOVERNMENT}:${CSS_PORT_GOVERNMENT}
healthcheck:
test: "[ -e healthy.flag ] || if wget --no-check-certificate http://localhost:${CSS_PORT_GOVERNMENT} --spider; then touch healthy.flag; else false; fi"
interval: 1s
timeout: 1s
retries: 100
start_period: 3s