Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions templates/besu/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -276,7 +276,10 @@ x-chainlensapi-ref:
- REINDEX_ENDPOINT=http://chainlensingestion/reindex/
- MONGO_DB_NAME=epirus
- MONGO_CREATE_INDICES=true
- REDIS_HOST=chainlensredis
- REDIS_PORT=6379
depends_on:
- chainlensredis
- chainlensmongodb

x-chainlensmongodb-ref:
Expand All @@ -288,12 +291,18 @@ x-chainlensmongodb-ref:
- DOCKER_CLIENT_TIMEOUT=900
entrypoint: mongod --bind_ip "0.0.0.0"

x-chainlensredis-ref:
&chainlensredis-def
image: redis
container_name: chainlensredis

x-chainlensweb-ref:
&chainlensweb-def
image: web3labs/epirus-free-web:latest
container_name: chainlensweb
environment:
- API_URL=/api
- WS_API_URL=ws://localhost:8090
- DISPLAY_NETWORK_TAB=disabled
depends_on:
- chainlensapi
Expand Down Expand Up @@ -648,6 +657,12 @@ services:
quorum-dev-quickstart:
ipv4_address: 172.16.239.57

chainlensredis:
<<: *chainlensredis-def
networks:
quorum-dev-quickstart:
ipv4_address: 172.16.239.58

{% endif %}

{% if monitoring != "splunk" %}
Expand Down