forked from taikoxyz/simple-taiko-node
-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.l3.yml
175 lines (167 loc) Β· 4.03 KB
/
docker-compose.l3.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
version: "3.4"
x-logging: &logging
logging:
options:
max-size: 10m
max-file: "3"
services:
l3_execution_engine:
image: gcr.io/evmchain/taiko-geth:eldfell
restart: unless-stopped
pull_policy: always
stop_grace_period: 3m
env_file:
- .env.l3
volumes:
- l3_execution_engine_data:/data/taiko-geth
ports:
- "${PORT_L3_EXECTION_ENGINE_METRICS}:6060"
- "${PORT_L3_EXECTION_ENGINE_HTTP}:8545"
- "${PORT_L3_EXECTION_ENGINE_WS}:8546"
- "${PORT_L3_EXECTION_ENGINE_P2P}:30303"
- "${PORT_L3_EXECTION_ENGINE_P2P}:30303/udp"
command:
- --taiko
- --networkid
- "${CHAIN_ID}"
- --syncmode
- full
- --gcmode
- archive
- --datadir
- /data/taiko-geth
- --metrics
- --metrics.expensive
- --metrics.addr
- "0.0.0.0"
- --bootnodes
- ${BOOT_NODES}
- --authrpc.addr
- "0.0.0.0"
- --authrpc.vhosts
- "*"
- --http
- --http.api
- debug,eth,net,web3,txpool,taiko
- --http.addr
- "0.0.0.0"
- --http.vhosts
- "*"
- --ws
- --ws.api
- debug,eth,net,web3,txpool,taiko
- --ws.addr
- "0.0.0.0"
- --ws.origins
- "*"
<<: *logging
l3_taiko_client_driver:
image: gcr.io/evmchain/taiko-client:eldfell
restart: unless-stopped
pull_policy: always
depends_on:
- l3_execution_engine
env_file:
- .env.l3
volumes:
- l3_execution_engine_data:/data/taiko-geth
- ./script/l3:/script
entrypoint:
- /bin/sh
- -c
- "/script/start-driver.sh"
<<: *logging
l3_taiko_client_prover_relayer:
image: gcr.io/evmchain/taiko-client:eldfell
restart: unless-stopped
pull_policy: always
depends_on:
- l3_execution_engine
- l3_taiko_client_driver
- l3_zkevm_chain_prover_rpcd
env_file:
- .env.l3
volumes:
- ./script/l3:/script
entrypoint:
- /bin/sh
- -c
- "/script/start-prover-relayer.sh"
<<: *logging
l3_taiko_client_proposer:
image: gcr.io/evmchain/taiko-client:eldfell
restart: unless-stopped
pull_policy: always
depends_on:
- l3_execution_engine
- l3_taiko_client_driver
env_file:
- .env.l3
volumes:
- ./script/l3:/script
entrypoint:
- /bin/sh
- -c
- "/script/start-proposer.sh"
<<: *logging
l3_zkevm_chain_prover_rpcd:
image: gcr.io/evmchain/eldfell-proverd:latest
restart: unless-stopped
pull_policy: always
env_file:
- .env.l3
volumes:
- ./script/l3:/script
- l3_zkevm_chain_prover_rpcd_data:/data
entrypoint:
- /bin/sh
- -c
- "/script/start-zkevm-chain-rpcd.sh"
deploy:
replicas: ${ZKEVM_CHAIN_INSTANCES_NUM:-1}
resources:
limits:
memory: 32G
<<: *logging
l3_prometheus:
image: prom/prometheus:latest
restart: unless-stopped
env_file:
- .env.l3
ports:
- ${PORT_PROMETHEUS}:9090
depends_on:
- l3_execution_engine
- l3_taiko_client_driver
volumes:
- ./docker/prometheus/l3:/etc/prometheus
- l3_prometheus_data:/prometheus
command:
- --log.level=debug
- --config.file=/etc/prometheus/prometheus.yml
<<: *logging
l3_grafana:
image: grafana/grafana:latest
restart: unless-stopped
env_file:
- .env.l3
ports:
- ${PORT_GRAFANA}:3000
depends_on:
- l3_execution_engine
- l3_taiko_client_driver
- l3_prometheus
environment:
- GF_PATHS_CONFIG=/etc/grafana/custom/settings.ini
- GF_PATHS_PROVISIONING=/etc/grafana/custom/provisioning
- GF_LOG_LEVEL=WARN
volumes:
- ./docker/grafana/custom/settings.ini:/etc/grafana/custom/settings.ini
- ./docker/grafana/custom/l3/provisioning/:/etc/grafana/custom/provisioning/
- l3_grafana_data:/var/lib/grafana
<<: *logging
volumes:
l3_execution_engine_data:
l3_zkevm_chain_prover_rpcd_data:
l3_prometheus_data:
l3_grafana_data: