Blockchain explorer for Ethereum based network and a tool for inspecting and analyzing EVM based blockchains.
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.
 
 
 
 
 
blockscout/docker-compose
Viktor Baranov 8f62653928 Move .pre-commit-config.yaml to the root 1 year ago
..
envs Extend docker-compose configs with new config when front is running externally 1 year ago
proxy Fix docker-compose with new frontend Auth0 path 1 year ago
services docker-compose-nginx.yml add extra_hosts 1 year ago
README.md Actualize docker-compose readme and use latest tags instead main 2 years ago
docker-compose-no-build-erigon.yml Arm compatible docker image 1 year ago
docker-compose-no-build-external-frontend.yml Remove unused env vars 1 year ago
docker-compose-no-build-frontend.yml Extend docker-compose configs with new config when front is running externally 1 year ago
docker-compose-no-build-ganache.yml Arm compatible docker image 1 year ago
docker-compose-no-build-geth-clique-consensus.yml Arm compatible docker image 1 year ago
docker-compose-no-build-geth.yml Arm compatible docker image 1 year ago
docker-compose-no-build-hardhat-network.yml Arm compatible docker image 1 year ago
docker-compose-no-build-nethermind.yml Arm compatible docker image 1 year ago
docker-compose-no-build-no-db-container.yml Arm compatible docker image 1 year ago
docker-compose-no-rust-services.yml Arm compatible docker image 1 year ago
docker-compose.yml Arm compatible docker image 1 year ago

README.md

Docker-compose configuration

Runs Blockscout locally in Docker containers with docker-compose.

Prerequisites

  • Docker v20.10+
  • Docker-compose 2.x.x+
  • Running Ethereum JSON RPC client

Building Docker containers from source

docker-compose up --build

This command uses by-default docker-compose.yml, which builds the explorer into the Docker image and runs 6 Docker containers:

  • Postgres 14.x database, which will be available at port 7432 on localhost.
  • Redis database of latest version, which will be available at port 6379 on localhost.
  • Blockscout explorer at http://localhost:4000.

and 3 Rust microservices:

Note for Linux users: Linux users need to run the local node on http://0.0.0.0/ rather than http://127.0.0.1/

Building Docker containers from source with native smart contract verification (deprecated)

docker-compose -f docker-compose-no-rust-verification.yml up --build

Configs for different Ethereum clients

The repo contains built-in configs for different clients without needing to build the image.

  • Erigon: docker-compose -f docker-compose-no-build-erigon.yml up -d
  • Geth: docker-compose -f docker-compose-no-build-geth.yml up -d
  • Nethermind, OpenEthereum: docker-compose -f docker-compose-no-build-nethermind up -d
  • Ganache: docker-compose -f docker-compose-no-build-ganache.yml up -d
  • HardHat network: docker-compose -f docker-compose-no-build-hardhat-network.yml up -d
  • Running only explorer without DB: docker-compose -f docker-compose-no-build-no-db-container.yml up -d. In this case, one container is created - for the explorer itself. And it assumes that the DB credentials are provided through DATABASE_URL environment variable.

All of the configs assume the Ethereum JSON RPC is running at http://localhost:8545.

In order to stop launched containers, run docker-compose -d -f config_file.yml down, replacing config_file.yml with the file name of the config which was previously launched.

You can adjust BlockScout environment variables from ./envs/common-blockscout.env. Descriptions of the ENVs are available in the docs.