eth-blob-indexer/test/compose.yml

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