forked from eth-educators/eth-docker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
reth.yml
91 lines (89 loc) · 2.34 KB
/
reth.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
version: "3.9"
x-logging: &logging
logging:
driver: json-file
options:
max-size: 100m
max-file: "3"
tag: '{{.ImageName}}|{{.Name}}|{{.ImageFullID}}|{{.FullID}}'
services:
execution:
restart: "unless-stopped"
build:
context: ./reth
dockerfile: ${RETH_DOCKERFILE}
args:
- BUILD_TARGET=${RETH_SRC_BUILD_TARGET:-main}
- SRC_REPO=${RETH_SRC_REPO:-https://github.com/paradigmxyz/reth}
- DOCKER_TAG=${RETH_DOCKER_TAG:-latest}
- DOCKER_REPO=${RETH_DOCKER_REPO:-ghcr.io/paradigmxyz/reth}
stop_grace_period: 5m
stop_signal: SIGINT
image: reth:local
user: reth
environment:
- JWT_SECRET=${JWT_SECRET:-}
- EL_EXTRAS=${EL_EXTRAS:-}
- LOG_LEVEL=${LOG_LEVEL:-info}
- ARCHIVE_NODE=${ARCHIVE_NODE:-}
- NETWORK=${NETWORK}
# Make this RUST_LOG=${LOG_LEVEL:-info},engine=trace when requiring deep debug
- RUST_LOG=${LOG_LEVEL:-info}
- RUST_LOG_STYLE=never
volumes:
- reth-el-data:/var/lib/reth
- /etc/localtime:/etc/localtime:ro
- jwtsecret:/var/lib/reth/ee-secret
ports:
- ${HOST_IP:-}${EL_P2P_PORT:-30303}:${EL_P2P_PORT:-30303}/tcp
- ${HOST_IP:-}${EL_P2P_PORT:-30303}:${EL_P2P_PORT:-30303}/udp
networks:
default:
aliases:
- eth1
- ${NETWORK}-execution # This allows multiple Eth Docker stacks all connected to the same central traefik
<<: *logging
entrypoint:
- docker-entrypoint.sh
- reth
- node
- --datadir
- /var/lib/reth
- --metrics
- 0.0.0.0:6060
- --port
- ${EL_P2P_PORT:-30303}
- --discovery.port
- ${EL_P2P_PORT:-30303}
- --nat
- publicip
- --http
- --http.addr
- 0.0.0.0
- --http.port
- ${EL_RPC_PORT:-8545}
- --http.api
- web3,eth,net
- --http.corsdomain=*
- --ws
- --ws.addr
- 0.0.0.0
- --ws.port
- ${EL_WS_PORT:-8546}
- --ws.api
- web3,eth,net
- --ws.origins=*
- --authrpc.addr
- 0.0.0.0
- --authrpc.port
- ${EE_PORT:-8551}
- --authrpc.jwtsecret
- /var/lib/reth/ee-secret/jwtsecret
labels:
- metrics.scrape=true
- metrics.path=/metrics
- metrics.port=6060
- metrics.instance=execution
volumes:
reth-el-data:
jwtsecret: