18 lines
433 B
YAML
18 lines
433 B
YAML
version: '3.9'
|
|
|
|
|
|
services:
|
|
otterscan:
|
|
build:
|
|
context: .
|
|
command: |
|
|
otter
|
|
--http.addr=0.0.0.0 --http.vhosts=* --http.corsdomain=* --ws
|
|
--http.api=eth,erigon,web3,net,trace,debug,txpool,ots
|
|
--metrics --metrics.addr=0.0.0.0 --metrics.port=6064
|
|
--pprof --pprof.addr=0.0.0.0 --pprof.port=6000
|
|
--private.api.addr=172.105.22.234:9191
|
|
##--datadir=/erigon
|
|
ports:
|
|
- 3000:8545
|