-
Notifications
You must be signed in to change notification settings - Fork 58
/
docker-compose.evm.yml
45 lines (41 loc) · 1.25 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
services:
record-streams-uploader:
restart: "no"
entrypoint:
[
"/bin/bash",
"-c",
"echo 'Deleting old recordStream files.';find /records/ -type f -delete;echo 'This container is intentionally disabled by the EVM profile.';"
]
command: []
account-balances-uploader:
restart: "no"
entrypoint:
[
"/bin/bash",
"-c",
"echo 'Deleting old accountBalances files.';find /balances/ -type f -delete;echo 'This container is intentionally disabled by the EVM profile.';"
]
command: []
record-sidecar-uploader:
restart: "no"
entrypoint:
[
"/bin/bash",
"-c",
"echo 'Deleting old sidecars files.';find /sidecar-files/ -type f -delete;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:
user: root
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"