-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdocker-compose.dev-infra.yml
More file actions
142 lines (134 loc) · 3.31 KB
/
Copy pathdocker-compose.dev-infra.yml
File metadata and controls
142 lines (134 loc) · 3.31 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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
services:
redis:
image: redis:7-alpine
command: ["redis-server", "--appendonly", "yes"]
ports:
- "127.0.0.1:16379:6379"
account-db:
image: postgres:16-alpine
environment:
POSTGRES_DB: account_auth
POSTGRES_USER: account_auth
POSTGRES_PASSWORD: account_auth
healthcheck:
test:
- CMD-SHELL
- pg_isready -U account_auth -d account_auth
interval: 5s
timeout: 5s
retries: 10
start_period: 5s
ports:
- "127.0.0.1:15431:5432"
driver-db:
image: postgres:16-alpine
environment:
POSTGRES_DB: driver_profile
POSTGRES_USER: driver_profile
POSTGRES_PASSWORD: driver_profile
healthcheck:
test:
- CMD-SHELL
- pg_isready -U driver_profile -d driver_profile
interval: 5s
timeout: 5s
retries: 10
start_period: 5s
ports:
- "127.0.0.1:15432:5432"
settlement-db:
image: postgres:16-alpine
environment:
POSTGRES_DB: settlement
POSTGRES_USER: settlement
POSTGRES_PASSWORD: settlement
healthcheck:
test:
- CMD-SHELL
- pg_isready -U settlement -d settlement
interval: 5s
timeout: 5s
retries: 10
start_period: 5s
ports:
- "127.0.0.1:15433:5432"
settlement-registry-db:
image: postgres:16-alpine
environment:
POSTGRES_DB: settlement_registry
POSTGRES_USER: settlement_registry
POSTGRES_PASSWORD: settlement_registry
healthcheck:
test:
- CMD-SHELL
- pg_isready -U settlement_registry -d settlement_registry
interval: 5s
timeout: 5s
retries: 10
start_period: 5s
ports:
- "127.0.0.1:15434:5432"
delivery-record-db:
image: postgres:16-alpine
environment:
POSTGRES_DB: delivery_record
POSTGRES_USER: delivery_record
POSTGRES_PASSWORD: delivery_record
healthcheck:
test:
- CMD-SHELL
- pg_isready -U delivery_record -d delivery_record
interval: 5s
timeout: 5s
retries: 10
start_period: 5s
ports:
- "127.0.0.1:15435:5432"
org-db:
image: postgres:16-alpine
environment:
POSTGRES_DB: organization_master
POSTGRES_USER: organization_master
POSTGRES_PASSWORD: organization_master
healthcheck:
test:
- CMD-SHELL
- pg_isready -U organization_master -d organization_master
interval: 5s
timeout: 5s
retries: 10
start_period: 5s
ports:
- "127.0.0.1:15436:5432"
vehicle-db:
image: postgres:16-alpine
environment:
POSTGRES_DB: vehicle_asset
POSTGRES_USER: vehicle_asset
POSTGRES_PASSWORD: vehicle_asset
healthcheck:
test:
- CMD-SHELL
- pg_isready -U vehicle_asset -d vehicle_asset
interval: 5s
timeout: 5s
retries: 10
start_period: 5s
ports:
- "127.0.0.1:15437:5432"
dispatch-registry-db:
image: postgres:16-alpine
environment:
POSTGRES_DB: dispatch_registry
POSTGRES_USER: dispatch_registry
POSTGRES_PASSWORD: dispatch_registry
healthcheck:
test:
- CMD-SHELL
- pg_isready -U dispatch_registry -d dispatch_registry
interval: 5s
timeout: 5s
retries: 10
start_period: 5s
ports:
- "127.0.0.1:15438:5432"