forked from hashgraph/hedera-local-node
-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.evm.yml
46 lines (46 loc) · 1.21 KB
/
docker-compose.evm.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
version: "2.4"
services:
record-streams-uploader:
restart: "no"
entrypoint: [
"echo",
"Deleting old recordStream files.",
"&&",
"rm -rf /records/*",
"&&",
"echo",
"This container is intentionally disabled by the EVM profile."
]
command: []
account-balances-uploader:
restart: "no"
entrypoint: [
"echo",
"Deleting old accountBalances files.",
"&&",
"rm -rf /balances/*",
"&&",
"echo",
"This container is intentionally disabled by the EVM profile."
]
command: []
record-sidecar-uploader:
restart: "no"
entrypoint: [
"echo",
"Deleting old sidecars files.",
"&&",
"rm -rf /sidecar-files/*",
"&&",
"echo",
"This container is intentionally disabled by the EVM profile."
]
command: []
minio:
restart: "no"
entrypoint: [ "echo", "This container is intentionally disabled by the EVM profile." ]
command: []
importer:
volumes:
- "${NETWORK_NODE_LOGS_ROOT_PATH}/accountBalances/balance0.0.3:/node/streams/accountBalances/balance0.0.3"
- "${NETWORK_NODE_LOGS_ROOT_PATH}/recordStreams/record0.0.3:/node/streams/recordstreams/record0.0.3"