Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- version: '2.2'
- services:
- erigon:
- image: docker.io/library/pulse-erigon-custom
- # 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"
- command: |
- ./build/bin/erigon
- --chain=pulsechain-testnet-v3
- --datadir=/blockchain/execution
- --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
- --http.api=eth,net,erigon,ots
- --authrpc.jwtsecret=/blockchain/jwt.hex
- --authrpc.addr=erigon
- --authrpc.vhosts=*
- --externalcl
- volumes:
- - /mnt/2TB/pulsechain:/blockchain
- restart: unless-stopped
- mem_swappiness: 0
- stop_grace_period: 30s
- prysm:
- image: registry.gitlab.com/pulsechaincom/prysm-pulse/beacon-chain
- command: |
- --pulsechain-testnet-v3
- --jwt-secret=/blockchain/jwt.hex
- --datadir=/blockchain/consensus
- --checkpoint-sync-url=https://checkpoint.v3.testnet.pulsechain.com
- --genesis-beacon-api-url=https://checkpoint.v3.testnet.pulsechain.com
- --verbosity=error
- --rpc-host=0.0.0.0
- --grpc-gateway-host=0.0.0.0
- --monitoring-host=0.0.0.0
- --grpc-gateway-corsdomain=*
- --execution-endpoint=http://erigon:8551
- ports:
- - "13000:13000/tcp"
- - "12000:12000/udp"
- volumes:
- - /mnt/2TB/pulsechain:/blockchain
- restart: unless-stopped
- depends_on:
- - erigon
- stop_grace_period: 30s
Add Comment
Please, Sign In to add comment