ipld-eth-db-validator/test/compose-db.yml

27 lines
709 B
YAML
Raw Normal View History

# Containers to run backing DB for unit testing
services:
2022-05-23 14:13:09 +00:00
migrations:
restart: on-failure
depends_on:
- ipld-eth-db
2024-04-23 10:25:17 +00:00
image: git.vdb.to/cerc-io/ipld-eth-db/ipld-eth-db:v5.2.1-alpha
2022-05-23 14:13:09 +00:00
environment:
DATABASE_USER: "vdbm"
DATABASE_NAME: "cerc_testing"
2022-05-23 14:13:09 +00:00
DATABASE_PASSWORD: "password"
DATABASE_HOSTNAME: "ipld-eth-db"
DATABASE_PORT: 5432
ipld-eth-db:
container_name: test-ipld-eth-db
2022-05-23 14:13:09 +00:00
image: timescale/timescaledb:latest-pg14
restart: always
2022-05-23 14:13:09 +00:00
command: ["postgres", "-c", "log_statement=all"]
environment:
POSTGRES_USER: "vdbm"
POSTGRES_DB: "cerc_testing"
POSTGRES_PASSWORD: "password"
ports:
- "127.0.0.1:8077:5432"