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/services/docker-compose-stats.yml

34 lines
945 B

version: '3.8'
services:
stats-db:
image: postgres:14
restart: always
container_name: 'stats-postgres'
command: postgres -c 'max_connections=200'
environment:
POSTGRES_PASSWORD: ''
POSTGRES_USER: 'postgres'
POSTGRES_HOST_AUTH_METHOD: 'trust'
ports:
- 7433:5432
volumes:
- ./stats-db-data:/var/lib/postgresql/data/
stats:
image: ghcr.io/blockscout/stats:${STATS_DOCKER_TAG:-latest}
pull_policy: always
platform: linux/amd64
restart: always
container_name: 'stats'
extra_hosts:
- 'host.docker.internal:host-gateway'
env_file:
- ../envs/common-stats.env
environment:
- STATS__DB_URL=postgres://postgres:@stats-db:5432/stats
- STATS__BLOCKSCOUT_DB_URL=postgresql://postgres:@host.docker.internal:7432/blockscout?ssl=false
- STATS__CREATE_DATABASE=true
- STATS__RUN_MIGRATIONS=true
ports:
- 8153:8050