hes21

Untitled

Mar 24th, 2023 (edited)
48
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.89 KB | None | 0 0
  1. version: '2.2'
  2.  
  3. services:
  4. erigon:
  5. image: docker.io/library/pulse-erigon-custom
  6. # command: "./build/bin/erigon --chain=goerli --torrent.download.slots=7 --torrent.upload.rate=10mb --torrent.download.rate=100mb --http.vhosts=* --metrics --metrics.addr=0.0.0.0 --metrics.port=6060 --pprof --pprof.addr=0.0.0.0 --pprof.port=6061 --authrpc.addr=erigon --authrpc.vhosts=erigon --http.api=eth,net,erigon,ots --authrpc.jwtsecret=/root/.local/share/erigon/jwt.hex"
  7. command: |
  8. ./build/bin/erigon
  9. --chain=pulsechain-testnet-v3
  10. --datadir=/blockchain/execution
  11. --torrent.download.slots=7
  12. --torrent.upload.rate=10mb
  13. --torrent.download.rate=100mb
  14. --http.vhosts=*
  15. --metrics
  16. --metrics.addr=0.0.0.0
  17. --metrics.port=6060
  18. --pprof
  19. --pprof.addr=0.0.0.0
  20. --pprof.port=6061
  21. --http.api=eth,net,erigon,ots
  22. --authrpc.jwtsecret=/blockchain/jwt.hex
  23. --authrpc.addr=erigon
  24. --authrpc.vhosts=*
  25. --externalcl
  26. volumes:
  27. - /mnt/2TB/pulsechain:/blockchain
  28. restart: unless-stopped
  29. mem_swappiness: 0
  30. stop_grace_period: 30s
  31.  
  32. prysm:
  33. image: registry.gitlab.com/pulsechaincom/prysm-pulse/beacon-chain
  34. command: |
  35. --pulsechain-testnet-v3
  36. --jwt-secret=/blockchain/jwt.hex
  37. --datadir=/blockchain/consensus
  38. --checkpoint-sync-url=https://checkpoint.v3.testnet.pulsechain.com
  39. --genesis-beacon-api-url=https://checkpoint.v3.testnet.pulsechain.com
  40. --verbosity=error
  41. --rpc-host=0.0.0.0
  42. --grpc-gateway-host=0.0.0.0
  43. --monitoring-host=0.0.0.0
  44. --grpc-gateway-corsdomain=*
  45. --execution-endpoint=http://erigon:8551
  46. ports:
  47. - "13000:13000/tcp"
  48. - "12000:12000/udp"
  49. volumes:
  50. - /mnt/2TB/pulsechain:/blockchain
  51. restart: unless-stopped
  52. depends_on:
  53. - erigon
  54. stop_grace_period: 30s
Add Comment
Please, Sign In to add comment