Advertisement
Plaidstallion

Chain Pull

Jun 17th, 2021 (edited)
261
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.41 KB | None | 0 0
  1. version: "3.4"
  2.  
  3. services:
  4. # beaconpulleth1:
  5. # image: ethereum/client-go:v1.10.3
  6. # container_name: beaconpulleth1
  7. # restart: unless-stopped
  8. # stop_grace_period: 3m
  9. # 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"
  10. # volumes:
  11. # - /mnt/chaindata/chaindata/beaconpulleth1:/ethclient
  12.  
  13.  
  14. beaconpulleth1:
  15. image: rocketpool/smartnode-pow-proxy:v1.0.0-rc2
  16. container_name: beaconpulleth1
  17. restart: unless-stopped
  18. stop_grace_period: 3m
  19. entrypoint: "/go/bin/rocketpool-pow-proxy --httpPort 8545 --network mainnet --projectId <projectid>"
  20.  
  21. beaconpulleth2:
  22. image: consensys/teku:21.5.0
  23. user: root
  24. container_name: beaconpulleth2
  25. restart: unless-stopped
  26. stop_grace_period: 3m
  27. volumes:
  28. - /mnt/chaindata/chaindata/beaconpulleth2:/ethclient
  29. 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"
  30. depends_on:
  31. - beaconpulleth1
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement