Roy Crihfield
b5642c612a
Indexes the new validator withdrawal objects (from Shanghai/Capella fork: https://eips.ethereum.org/EIPS/eip-4895) - new table `eth.withdrawal_cids` - new column `withdrawals_root` in `eth.header_cids` - add unit tests - use new external stack repo in CI/CT job (cerc-io/fixturenet-eth-stacks#14) Reviewed-on: #25
25 lines
628 B
YAML
25 lines
628 B
YAML
services:
|
|
migrations:
|
|
restart: on-failure
|
|
depends_on:
|
|
- ipld-eth-db
|
|
image: git.vdb.to/cerc-io/ipld-eth-db/ipld-eth-db:v5.3.0-alpha
|
|
environment:
|
|
DATABASE_USER: "vdbm"
|
|
DATABASE_NAME: "cerc_testing"
|
|
DATABASE_PASSWORD: "password"
|
|
DATABASE_HOSTNAME: "ipld-eth-db"
|
|
DATABASE_PORT: 5432
|
|
|
|
ipld-eth-db:
|
|
image: timescale/timescaledb:latest-pg14
|
|
restart: always
|
|
environment:
|
|
POSTGRES_USER: "vdbm"
|
|
POSTGRES_DB: "cerc_testing"
|
|
POSTGRES_PASSWORD: "password"
|
|
ports:
|
|
- 127.0.0.1:8077:5432
|
|
volumes:
|
|
- ../indexer/database/file:/file_indexer
|