Binance Smart Chain Fullnode.
- 2021-04-24
- switched from
alpine
todebian
due to bugs
- switched from
- 2021-04-23
- accept more connections (ws, rpc) and correct expose
- http now listens to everything
- 2021-04-22
- multiarch build
This is a Binance Smart Chain Fullnode Container running on _/debian
.
For more see: https://docs.binance.org/smart-chain/developer/fullnode.html
- NETWORK
- default:
main
- can be set to
main
ortest
- let's you choose which binance network to use
- with existing initialized persistent volume changing has no effect
- default:
- /data
- data volume to store all the blockchain / binance smart chain data
- will be initialized the first time with configured network genesis
- 6060
tcp
- pprof / metrics
- 8545
tcp
- HTTP based JSON RPC API
- 8546
tcp
- WebSocket based JSON RPC API
- 8547
tcp
- GraphQL API
- 30311
udp
tcp
- Node P2P
version: '3'
services:
bsc:
image: servercontainers/bsc
restart: always
environment:
NETWORK: main
volumes:
- ./data:/data
ports:
- "127.0.0.1:6060:6060"
- "127.0.0.1:8545:8545"
- "127.0.0.1:8546:8546"
- "127.0.0.1:8547:8547"
- "30311:30311"