eth-blob-indexer/test/compose.yml
Roy Crihfield 1d1ee73ff2
Some checks failed
Tests / Run Blobscan scraper tests (push) Successful in 2m23s
Tests / Run Beacon collector tests (push) Failing after 22m23s
Implement Blobscan scraper (#2)
New utility to backfill data from Blobscan.

Reviewed-on: #2
2024-07-01 14:01:27 +00:00

27 lines
609 B
YAML

services:
eth-blob-indexer:
image: cerc/eth-blob-indexer:local
build:
context: ..
dockerfile: Dockerfile
restart: on-failure
depends_on:
eth-blob-db:
condition: service_healthy
command:
- "--beacon-addr=${ETH_BEACON_ADDR:-http://fixturenet-eth-lighthouse-1:8001}"
- "--redis-addr=${ETH_BLOBDB_ADDR:-eth-blob-db:6379}"
- "--log-level=debug"
eth-blob-db:
image: redis:7
restart: always
ports:
- 6379
healthcheck:
test: [ "CMD", "redis-cli", "--raw", "incr", "_ping" ]
networks:
test_default:
external: true