forked from chriseth/go-ethereum
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathclients-goerli.yaml
39 lines (35 loc) · 1.25 KB
/
clients-goerli.yaml
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
version: "3.8"
services:
execution-goerli:
image: ethereum/source-verify:geth-v1.11.5
container_name: geth-goerli
env_file: .env
command: --syncmode full --snapshot=false --goerli --http --http.api engine,personal,eth,net,web3 --http.addr 0.0.0.0 --http.corsdomain '*' --http.vhosts "localhost,geth-goerli" --authrpc.vhosts "localhost,geth-goerli" --authrpc.jwtsecret /root/.ethereum/goerli/geth/jwtsecret --authrpc.addr 0.0.0.0
ports:
- "8545:8545"
volumes:
- type: bind
source: /home/gather/ethereum-clients/5/
target: /root/.ethereum
networks:
- geth
stop_grace_period: 3m
restart: always
consensus-goerli:
image: chainsafe/lodestar:v1.7.1
container_name: lodestar-goerli
command: beacon --network goerli --dataDir /root/.ethereum --execution.urls http://geth-goerli:8551 --eth1.providerUrls http://geth-goerli:8545 --jwt-secret /root/.ethereum/goerli/geth/jwtsecret --checkpointSyncUrl https://goerli.beaconstate.ethstaker.cc/
ports:
- "9595:9596"
volumes:
- type: bind
source: /home/gather/ethereum-clients/5/
target: /root/.ethereum
networks:
- geth
stop_grace_period: 3m
restart: always
networks:
geth:
volumes:
goerli: