-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdocker-compose.yml
103 lines (95 loc) · 2.64 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
version: '3'
services:
v6y-bff:
extends:
file: docker-compose.base.yml
service: v6y-service-base
command: pnpm run start:bff
ports:
- "4001:4001"
image: ghcr.io/<registry-owner>/v6y-bff:latest
healthcheck:
test: [ "CMD", "curl", "-f", "http://localhost:4001/health" ]
interval: 30s
timeout: 10s
retries: 3
v6y-bfb-main-analyzer:
extends:
file: docker-compose.base.yml
service: v6y-service-base
command: pnpm run start:bfb:main
ports:
- "4002:4002"
image: ghcr.io/<registry-owner>/v6y-bfb-main-analyzer:latest
healthcheck:
test: [ "CMD", "curl", "-f", "http://localhost:4002/health" ]
interval: 30s
timeout: 10s
retries: 3
v6y-bfb-static-code-auditor:
extends:
file: docker-compose.base.yml
service: v6y-service-base
command: pnpm run start:bfb:static
ports:
- "4003:4003"
image: ghcr.io/<registry-owner>/v6y-bfb-static-code-auditor:latest
healthcheck:
test: [ "CMD", "curl", "-f", "http://localhost:4003/health" ]
interval: 30s
timeout: 10s
retries: 3
v6y-bfb-url-dynamic-auditor:
extends:
file: docker-compose.base.yml
service: v6y-service-base
command: pnpm run start:bfb:dynamic
ports:
- "4004:4004"
image: ghcr.io/<registry-owner>/v6y-bfb-url-dynamic-auditor:latest
healthcheck:
test: [ "CMD", "curl", "-f", "http://localhost:4004/health" ]
interval: 30s
timeout: 10s
retries: 3
v6y-bfb-devops-auditor:
extends:
file: docker-compose.base.yml
service: v6y-service-base
command: pnpm run start:bfb:devops
ports:
- "4005:4005"
image: ghcr.io/<registry-owner>/v6y-bfb-devops-auditor:latest
healthcheck:
test: [ "CMD", "curl", "-f", "http://localhost:4005/health" ]
interval: 30s
timeout: 10s
retries: 3
v6y-frontend:
extends:
file: docker-compose.base.yml
service: v6y-service-base
command: pnpm run start:frontend
ports:
- "4006:4006"
image: ghcr.io/<registry-owner>/v6y-frontend:latest
healthcheck:
test: [ "CMD", "curl", "-f", "http://localhost:4006/health" ]
interval: 30s
timeout: 10s
retries: 3
v6y-frontend-bo:
extends:
file: docker-compose.base.yml
service: v6y-service-base
command: pnpm run start:frontend:bo
ports:
- "4008:4008"
image: ghcr.io/<registry-owner>/v6y-frontend-bo:latest
healthcheck:
test: [ "CMD", "curl", "-f", "http://localhost:4008/health" ]
interval: 30s
timeout: 10s
retries: 3
volumes:
mono-node-modules: null