Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- version: "3.4"
- services:
- # beaconpulleth1:
- # image: ethereum/client-go:v1.10.3
- # container_name: beaconpulleth1
- # restart: unless-stopped
- # stop_grace_period: 3m
- # entrypoint: "/usr/local/bin/geth --datadir /ethclient/geth --http --http.addr 0.0.0.0 --http.port 8545 --http.api eth,net,personal,web3 --ws --ws.addr 0.0.0.0 --ws.port 8546 --ws.api eth,net,personal,web3"
- # volumes:
- # - /mnt/chaindata/chaindata/beaconpulleth1:/ethclient
- beaconpulleth1:
- image: rocketpool/smartnode-pow-proxy:v1.0.0-rc2
- container_name: beaconpulleth1
- restart: unless-stopped
- stop_grace_period: 3m
- entrypoint: "/go/bin/rocketpool-pow-proxy --httpPort 8545 --network mainnet --projectId <projectid>"
- beaconpulleth2:
- image: consensys/teku:21.5.0
- user: root
- container_name: beaconpulleth2
- restart: unless-stopped
- stop_grace_period: 3m
- volumes:
- - /mnt/chaindata/chaindata/beaconpulleth2:/ethclient
- entrypoint: "/opt/teku/bin/teku --data-path=/ethclient/teku --p2p-port=9001 --eth1-endpoint=http://beaconpulleth1:8545 --network=mainnet --rest-api-enabled --rest-api-interface=0.0.0.0 --rest-api-port=5052 --rest-api-host-allowlist=* --eth1-deposit-contract-max-request-size=150 --initial-state https://<projectid>:<projectsecret>@eth2-beacon-mainnet.infura.io/eth/v1/debug/beacon/states/finalized"
- depends_on:
- - beaconpulleth1
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement