An enterprise-grade Java-based, Apache 2.0 licensed Ethereum client https://wiki.hyperledger.org/display/besu
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
besu/quickstart/docker-compose.yml

57 lines
1.5 KiB

version: '2.2'
services:
bootnode:
build:
context: ../
dockerfile: quickstart/pantheon/Dockerfile
args:
- JENKINS_URL=${JENKINS_URL:-null}
image: quickstart/pantheon:latest
entrypoint: /opt/pantheon/bootnode_start.sh --dev-mode
volumes:
- public-keys:/opt/pantheon/public-keys
minernode:
image: quickstart/pantheon:latest
# The address 0xfe3b557e8fb62b89f4916b721be55ceb828dbd73 is one of the addresses in the
# dev mode genesys file
command: ["--dev-mode",
"--miner-enabled",
"--miner-coinbase=0xfe3b557e8fb62b89f4916b721be55ceb828dbd73"]
volumes:
- public-keys:/opt/pantheon/public-keys
depends_on:
- bootnode
node:
image: quickstart/pantheon:latest
command: ["--dev-mode"]
volumes:
- public-keys:/opt/pantheon/public-keys
depends_on:
- bootnode
rpcnode:
image: quickstart/pantheon:latest
command: ["--dev-mode",
"--rpc-enabled",
"--rpc-listen=0.0.0.0:8545",
"--ws-enabled",
"--ws-listen=0.0.0.0:8546",
"--rpc-cors-origins=*"]
volumes:
- public-keys:/opt/pantheon/public-keys
depends_on:
- bootnode
ports:
- "8545"
- "8546"
explorer:
build:
context: block-explorer-light
dockerfile: Dockerfile
image: quickstart/block-explorer-light:latest
depends_on:
- rpcnode
ports:
- "${EXPLORER_PORT_MAPPING}80"
volumes:
public-keys: