-
Notifications
You must be signed in to change notification settings - Fork 22
/
docker-compose.yml
291 lines (275 loc) · 7.41 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
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
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
version: "3.9"
x-credentials:
&postgres-config
POSTGRES_HOSTNAME: database
POSTGRES_PORT: "5432"
POSTGRES_USER: postgres
POSTGRES_PASSWORD: password
POSTGRES_DB: postgres
services:
hardhat:
image: cartesi/rollups-hardhat:1.0.0
command:
[
"node",
"--network",
"hardhat",
"--export",
"/opt/cartesi/share/deployments/localhost.json"
]
init: true
ports:
- "8545:8545"
healthcheck:
test:
[
"CMD",
"test",
"-f",
"/opt/cartesi/share/deployments/localhost.json"
]
interval: 30s
timeout: 30s
retries: 5
volumes:
- blockchain-data:/opt/cartesi/share/deployments
- ./deployments:/app/rollups/deployments
dispatcher:
image: cartesi/rollups-dispatcher:1.0.0
restart: always
depends_on:
hardhat:
condition: service_healthy
hardhat_set_interval:
condition: service_completed_successfully
deployer:
condition: service_completed_successfully
state_server:
condition: service_healthy
redis:
condition: service_healthy
common-contracts:
condition: service_completed_successfully
environment:
RUST_LOG: info
RD_DAPP_DEPLOYMENT_FILE: /deployments/localhost/dapp.json
RD_ROLLUPS_DEPLOYMENT_FILE: /opt/cartesi/share/deployments/localhost.json
RD_EPOCH_DURATION: 86400
SC_GRPC_ENDPOINT: http://state_server:50051
SC_DEFAULT_CONFIRMATIONS: 1
TX_PROVIDER_HTTP_ENDPOINT: http://hardhat:8545
AUTH_MNEMONIC: "test test test test test test test test test test test junk"
TX_CHAIN_ID: 31337
TX_CHAIN_IS_LEGACY: ${TX_LEGACY:-false}
TX_DEFAULT_CONFIRMATIONS: 2
REDIS_ENDPOINT: redis://redis:6379
volumes:
- blockchain-data:/opt/cartesi/share/deployments:ro
- ./deployments:/deployments:ro
state_server:
image: cartesi/rollups-state-server:1.0.0
restart: always
healthcheck:
test: ["CMD-SHELL","bash -c 'echo \"\" > /dev/tcp/127.0.0.1/50051;'"]
interval: 10s
timeout: 5s
retries: 5
depends_on:
hardhat:
condition: service_healthy
common-contracts:
condition: service_completed_successfully
environment:
RUST_LOG: info
SF_GENESIS_BLOCK: 0x1
SF_SAFETY_MARGIN: 1
BH_HTTP_ENDPOINT: http://hardhat:8545
BH_WS_ENDPOINT: ws://hardhat:8545
BH_BLOCK_TIMEOUT: 8
advance_runner:
image: cartesi/rollups-advance-runner:1.0.0
restart: always
healthcheck:
test: [ "CMD", "curl", "--fail", "localhost:8080/healthz" ]
interval: 10s
timeout: 5s
retries: 5
depends_on:
redis:
condition: service_healthy
server_manager:
condition: service_healthy
deployer:
condition: service_completed_successfully
volumes:
- ./deployments:/deployments:ro
- machine:/var/opt/cartesi/machine-snapshots
environment:
RUST_LOG: info
SERVER_MANAGER_ENDPOINT: http://server_manager:5001
SESSION_ID: default_rollups_id
REDIS_ENDPOINT: redis://redis:6379
CHAIN_ID: 31337
DAPP_CONTRACT_ADDRESS_FILE: /deployments/localhost/dapp.json
SNAPSHOT_DIR: /var/opt/cartesi/machine-snapshots
SNAPSHOT_LATEST: /var/opt/cartesi/machine-snapshots/latest
server_manager:
image: ${DAPP_IMAGE:-cartesi/honeypot:devel-server}
restart: always
ports:
- "5001:5001"
healthcheck:
test: ["CMD-SHELL","bash -c 'echo \"\" > /dev/tcp/127.0.0.1/5001;'"]
interval: 10s
timeout: 5s
retries: 5
volumes:
- machine:/var/opt/cartesi/machine-snapshots
environment:
- SERVER_MANAGER_LOG_LEVEL=warning
- REMOTE_CARTESI_MACHINE_LOG_LEVEL=info
deployer:
image: cartesi/rollups-cli:1.0.0
restart: on-failure
depends_on:
hardhat:
condition: service_healthy
server_manager:
condition: service_healthy
common-contracts:
condition: service_completed_successfully
command:
[
"create",
"--rpc",
"http://hardhat:8545",
"--deploymentFile",
"/opt/cartesi/share/deployments/localhost.json",
"--mnemonic",
"test test test test test test test test test test test junk",
"--templateHashFile",
"/var/opt/cartesi/machine-snapshots/0_0/hash",
"--outputFile",
"/deployments/localhost/dapp.json"
]
volumes:
- blockchain-data:/opt/cartesi/share/deployments:ro
- machine:/var/opt/cartesi/machine-snapshots:ro
- ./deployments:/deployments
hardhat_stop_automine:
image: curlimages/curl:7.84.0
restart: on-failure
depends_on:
hardhat:
condition: service_healthy
deployer:
condition: service_completed_successfully
command:
[
"--data",
'{"id":1337,"jsonrpc":"2.0","method":"evm_setAutomine","params":[false]}',
"http://hardhat:8545"
]
hardhat_set_interval:
image: curlimages/curl:7.84.0
restart: on-failure
depends_on:
hardhat:
condition: service_healthy
hardhat_stop_automine:
condition: service_completed_successfully
command:
[
"--data",
'{"id":1337,"jsonrpc":"2.0","method":"evm_setIntervalMining","params":[5000]}',
"http://hardhat:8545"
]
inspect_server:
image: cartesi/rollups-inspect-server:1.0.0
restart: always
ports:
- "5005:5005"
depends_on:
server_manager:
condition: service_healthy
environment:
RUST_LOG: info
INSPECT_SERVER_ADDRESS: 0.0.0.0:5005
SERVER_MANAGER_ADDRESS: server_manager:5001
SESSION_ID: default_rollups_id
indexer:
image: cartesi/rollups-indexer:1.0.0
restart: always
depends_on:
database:
condition: service_healthy
redis:
condition: service_healthy
deployer:
condition: service_completed_successfully
environment:
<<: *postgres-config
RUST_LOG: info
REDIS_ENDPOINT: redis://redis:6379
CHAIN_ID: 31337
DAPP_CONTRACT_ADDRESS_FILE: /deployments/localhost/dapp.json
volumes:
- ./deployments:/deployments:ro
graphql_server:
image: cartesi/rollups-graphql-server:1.0.0
ports:
- "4000:4000"
depends_on:
database:
condition: service_healthy
environment:
RUST_LOG: info
GRAPHQL_HOST: "0.0.0.0"
GRAPHQL_PORT: "4000"
<<: *postgres-config
database:
image: postgres:13-alpine
ports:
- 5432:5432
healthcheck:
test: [ "CMD-SHELL", "pg_isready -U postgres || exit 1" ]
interval: 10s
timeout: 5s
retries: 5
environment:
- POSTGRES_PASSWORD=password
volumes:
- database-data:/var/lib/postgresql/data
redis:
image: redis:6-alpine
ports:
- 6379:6379
restart: always
healthcheck:
test: [ "CMD", "redis-cli", "ping" ]
interval: 10s
timeout: 5s
retries: 5
volumes:
- redis-data:/data
common-contracts:
build: ./common-contracts
network_mode: host
depends_on:
hardhat:
condition: service_healthy
command:
[
"deploy",
"--reset",
"--network",
"localhost"
]
init: true
volumes:
- ./common-contracts/deployments:/app/deployments
volumes:
blockchain-data: {}
machine: {}
database-data: {}
redis-data: {}