Skip to content

Commit 7b60a35

Browse files
authored
chore: bump lighthouse and do minor fixes in docker compose (paradigmxyz#15587)
1 parent 5b8e40b commit 7b60a35

File tree

2 files changed

+11
-11
lines changed

2 files changed

+11
-11
lines changed

etc/docker-compose.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ services:
1414
- sepolia_data:/root/.local/share/reth/sepolia
1515
- holesky_data:/root/.local/share/reth/holesky
1616
- logs:/root/logs
17-
- ./jwttoken:/root/jwt:ro
17+
- ./jwttoken:/root/jwt/:ro
1818
# https://paradigmxyz.github.io/reth/run/troubleshooting.html#concurrent-database-access-error-using-containersdocker
1919
pid: host
2020
# For Sepolia, replace `--chain mainnet` with `--chain sepolia`

etc/lighthouse.yml

+10-10
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,17 @@
1-
version: '3.9'
1+
version: "3.9"
22
name: reth
3-
43
services:
54
lighthouse:
65
restart: unless-stopped
7-
image: sigp/lighthouse:v5.1.3-modern
6+
image: sigp/lighthouse:v7.0.0-beta.5
87
depends_on:
98
- reth
109
ports:
11-
- '5052:5052/tcp' # rpc
12-
- '5053:5053/tcp'
13-
- '5054:5054/tcp' # metrics
14-
- '9000:9000/tcp' # p2p
15-
- '9000:9000/udp' # p2p
10+
- "5052:5052/tcp" # rpc
11+
- "5053:5053/tcp"
12+
- "5054:5054/tcp" # metrics
13+
- "9000:9000/tcp" # p2p
14+
- "9000:9000/udp" # p2p
1615
volumes:
1716
- lighthousedata:/root/.lighthouse
1817
- ./jwttoken:/root/jwt:ro
@@ -26,7 +25,8 @@ services:
2625
--execution-endpoint http://reth:8551
2726
--metrics --metrics-address 0.0.0.0
2827
--execution-jwt /root/jwt/jwt.hex
29-
--checkpoint-sync-url https://mainnet.checkpoint.sigp.io
28+
--checkpoint-sync-url https://sync-mainnet.beaconcha.in
29+
--checkpoint-sync-url-timeout=300
3030
3131
metrics-exporter:
3232
restart: unless-stopped
@@ -44,4 +44,4 @@ services:
4444

4545
volumes:
4646
lighthousedata:
47-
driver: local
47+
driver: local

0 commit comments

Comments
 (0)