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