22 lines
502 B
YAML
22 lines
502 B
YAML
services:
|
|
quorum-explorer:
|
|
container_name: blockchain-explorer
|
|
image: consensys/quorum-explorer
|
|
ports:
|
|
- "25000:25000/tcp"
|
|
networks:
|
|
besu-network:
|
|
ipv4_address: 172.16.239.24
|
|
environment:
|
|
- QE_CONFIG_PATH=/app/config.json
|
|
- NODE_ENV=production
|
|
- DISABLE_AUTH=true
|
|
volumes:
|
|
- ./explorer-config.json:/app/config.json
|
|
restart: unless-stopped
|
|
|
|
networks:
|
|
besu-network:
|
|
external: true
|
|
name: besu-docker-network_besu-network
|