2023-09-20 06:28:06 +00:00
|
|
|
# Containers to run backing DB for testing
|
2023-03-10 20:04:05 +00:00
|
|
|
|
|
|
|
services:
|
|
|
|
migrations:
|
|
|
|
restart: on-failure
|
|
|
|
depends_on:
|
|
|
|
- ipld-eth-db
|
2024-04-22 13:16:24 +00:00
|
|
|
image: git.vdb.to/cerc-io/ipld-eth-db/ipld-eth-db:v5.2.1-alpha
|
2023-03-10 20:04:05 +00:00
|
|
|
environment:
|
|
|
|
DATABASE_USER: "vdbm"
|
2023-05-19 03:46:51 +00:00
|
|
|
DATABASE_NAME: "cerc_testing"
|
2023-03-10 20:04:05 +00:00
|
|
|
DATABASE_PASSWORD: "password"
|
|
|
|
DATABASE_HOSTNAME: "ipld-eth-db"
|
|
|
|
DATABASE_PORT: 5432
|
|
|
|
|
|
|
|
ipld-eth-db:
|
2023-05-19 03:46:51 +00:00
|
|
|
container_name: test-ipld-eth-db
|
2023-03-10 20:04:05 +00:00
|
|
|
image: timescale/timescaledb:latest-pg14
|
|
|
|
restart: always
|
|
|
|
command: ["postgres", "-c", "log_statement=all"]
|
|
|
|
environment:
|
|
|
|
POSTGRES_USER: "vdbm"
|
2023-05-19 03:46:51 +00:00
|
|
|
POSTGRES_DB: "cerc_testing"
|
2023-03-10 20:04:05 +00:00
|
|
|
POSTGRES_PASSWORD: "password"
|
|
|
|
ports:
|
|
|
|
- "127.0.0.1:8077:5432"
|
|
|
|
volumes:
|
|
|
|
- ./statediff/indexer/database/file:/file_indexer
|