otterscan/docker-compose.yaml

20 lines
561 B
YAML
Raw Permalink Normal View History

2022-10-25 08:52:54 +00:00
version: '3.9'
services:
2022-10-25 10:20:17 +00:00
otterscan:
2022-10-25 08:52:54 +00:00
build:
context: .
command: |
2022-10-25 11:05:05 +00:00
otter --http.addr=0.0.0.0 --http.vhosts=* --http.corsdomain=* --ws
2022-10-25 08:52:54 +00:00
--http.api=eth,erigon,web3,net,trace,debug,txpool,ots
2022-10-25 11:05:05 +00:00
--ots.beaconapi.url="http://localhost:3500"
--ots.externalasset.url=""
--private.api.addr=erigon:9090
--txpool.api.addr=txpool:9094
--datadir=/home/erigon/.local/share/erigon
2022-10-25 08:52:54 +00:00
--metrics --metrics.addr=0.0.0.0 --metrics.port=6064
--pprof --pprof.addr=0.0.0.0 --pprof.port=6000
ports:
2022-10-25 12:32:28 +00:00
- 3001:8545