28 lines
632 B
YAML
28 lines
632 B
YAML
services:
|
|
bsc:
|
|
image: ghcr.io/bnb-chain/bsc:1.4.8
|
|
restart: unless-stopped
|
|
environment:
|
|
CERC_BSC_NETWORK: ${CERC_BSC_NETWORK:-mainnet}
|
|
CERC_GETH_GCMODE: ${CERC_GETH_GCMODE:-full}
|
|
CERC_GETH_VERBOSITY: ${CERC_GETH_VERBOSITY:-3}
|
|
volumes:
|
|
- ../config/docker-entrypoint.sh:/bsc/docker-entrypoint.sh
|
|
- data:/data
|
|
- bsc:/bsc
|
|
ports:
|
|
- 30303:30303
|
|
- 30311:30311
|
|
- 8545:8545
|
|
- 8546:8546
|
|
healthcheck:
|
|
test: ["CMD", "nc", "-vz", "localhost", "8545"]
|
|
interval: 5s
|
|
retries: 5
|
|
start_period: 10s
|
|
timeout: 3s
|
|
|
|
volumes:
|
|
data:
|
|
bsc:
|