blockscout

This commit is contained in:
md00ux 2021-04-06 05:55:24 +00:00
parent d5705f0046
commit 6c152fb32f
3 changed files with 51 additions and 1 deletions

View File

@ -0,0 +1,44 @@
version: '3'
services:
explorer:
image: puppeth/blockscout:latest
restart: on-failure
environment:
ETHEREUM_JSONRPC_HTTP_URL: "http://172.15.0.3:8545"
ETHEREUM_JSONRPC_TRACE_URL: "http://172.15.0.3:8545"
ETHEREUM_JSONRPC_VARIANT: "ganache"
ETHEREUM_JSONRPC_WS_URL: "ws://172.15.0.3:8545"
POSTGRES_USER: "postgres"
POSTGRES_PASSWORD: "let-me-in"
DATABASE_URL: "postgresql://postgres:let-me-in@postgres:5432/explorer?ssl=false"
SECRET_KEY_BASE: "RaWSAyRGSDvieOJ97cqYuIPZq1G26Mui8tz/aDuC10rkPFonGkuT46BVdDx5GYhM"
NETWORK: "development"
NETWORK_PATH: "/"
LINK_TO_OTHER_EXPLORERS: "false"
ports:
- "4000:4000"
networks:
backend:
ipv4_address: 172.15.0.20
command: bash -c "PGHOST=172.15.0.21 PGUSER=postgres PGDATABASE=postgres PGPASSWORD=let-me-in PGPORT=5432 psql -c 'drop database if exists explorer;' && mix do ecto.create, ecto.migrate && mix phx.server"
depends_on:
- postgres
postgres:
image: postgres
restart: on-failure
user: postgres
ports:
- '5432:5432'
networks:
backend:
ipv4_address: 172.15.0.21
command: ['postgres', '-cshared_preload_libraries=pg_stat_statements']
environment:
POSTGRES_USER: "postgres"
POSTGRES_PASSWORD: "let-me-in"
POSTGRES_DB: "explorer"
volumes:
- data:/var/lib/postgresql/data
volumes:
data:
driver: local

View File

@ -6,4 +6,4 @@ networks:
ipam:
driver: default
config:
- subnet: 172.15.0.1/24
- subnet: 172.15.0.0/24

View File

@ -162,6 +162,7 @@ COMPOSE_FILES+=" -f ${COMPOSE_DIR}/aquarius.yml"
COMPOSE_FILES+=" -f ${COMPOSE_DIR}/provider.yml"
COMPOSE_FILES+=" -f ${COMPOSE_DIR}/ganache.yml"
COMPOSE_FILES+=" -f ${COMPOSE_DIR}/ocean_contracts.yml"
COMPOSE_FILES+=" -f ${COMPOSE_DIR}/explorer.yml"
DOCKER_COMPOSE_EXTRA_OPTS="${DOCKER_COMPOSE_EXTRA_OPTS:-}"
@ -208,6 +209,11 @@ while :; do
export DEPLOY_CONTRACTS=false
printf $COLOR_Y'Ocean contracts will not be deployed, the last deployment (if any) will be intact ...\n\n'$COLOR_RESET
;;
--no-explorer)
COMPOSE_FILES="${COMPOSE_FILES/ -f ${COMPOSE_DIR}\/explorer.yml/}"
printf $COLOR_Y'Starting without Blockscout...\n\n'$COLOR_RESET
;;
#################################################
# Cleaning switches
#################################################