forked from taikoxyz/simple-taiko-node
-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
139 lines (133 loc) · 3.3 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
version: "3.4"
x-logging:
&logging
logging:
options:
max-size: 10m
max-file: "3"
services:
l2_execution_engine:
image: gcr.io/evmchain/taiko-geth:snaefellsjokull
restart: unless-stopped
pull_policy: always
stop_grace_period: 3m
volumes:
- l2_execution_engine_data:/data/taiko-geth
ports:
- "${PORT_L2_EXECTION_ENGINE_METRICS}:6060"
- "${PORT_L2_EXECTION_ENGINE_HTTP}:8545"
- "${PORT_L2_EXECTION_ENGINE_WS}:8546"
- "${PORT_L2_EXECTION_ENGINE_P2P}:30303"
- "${PORT_L2_EXECTION_ENGINE_P2P}:30303/udp"
command:
- --taiko
- --networkid
- "${CHAIN_ID}"
- --syncmode
- full
- --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
taiko_client_driver:
image: gcr.io/evmchain/taiko-client:snaefellsjokull
restart: unless-stopped
pull_policy: always
depends_on:
- l2_execution_engine
volumes:
- l2_execution_engine_data:/data/taiko-geth
command:
- driver
- --l1.ws
- ${L1_ENDPOINT_WS}
- --l2.ws
- ws://l2_execution_engine:8546
- --l2.auth
- http://l2_execution_engine:8551
- --taikoL1
- ${TAIKO_L1_ADDRESS}
- --taikoL2
- ${TAIKO_L2_ADDRESS}
- --l2.throwawayBlockBuilderPrivKey
- ${L2_THROWAWAY_BLOCK_BUILDER_PRIVATE_KEY}
- --jwtSecret
- /data/taiko-geth/geth/jwtsecret
- --p2p.syncVerifiedBlocks
<<: *logging
taiko_client_proposer:
image: gcr.io/evmchain/taiko-client:snaefellsjokull
restart: unless-stopped
pull_policy: always
depends_on:
- l2_execution_engine
- taiko_client_driver
env_file:
- .env
volumes:
- ./script:/script
entrypoint:
- /bin/sh
- -c
- "/script/start-proposer.sh"
<<: *logging
prometheus:
image: prom/prometheus:latest
restart: unless-stopped
ports:
- ${PORT_PROMETHEUS}:9090
depends_on:
- l2_execution_engine
- taiko_client_driver
volumes:
- ./docker/prometheus:/etc/prometheus
- prometheus_data:/prometheus
command:
- --log.level=debug
- --config.file=/etc/prometheus/prometheus.yml
<<: *logging
grafana:
image: grafana/grafana:latest
restart: unless-stopped
ports:
- ${PORT_GRAFANA}:3000
depends_on:
- l2_execution_engine
- taiko_client_driver
- 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/provisioning/:/etc/grafana/custom/provisioning/
- grafana_data:/var/lib/grafana
<<: *logging
volumes:
l2_execution_engine_data:
prometheus_data:
grafana_data: