2023-06-23 12:42:55 +00:00
|
|
|
services:
|
|
|
|
migrations:
|
|
|
|
restart: on-failure
|
|
|
|
depends_on:
|
|
|
|
- ipld-eth-db
|
2023-08-03 14:47:09 +00:00
|
|
|
image: git.vdb.to/cerc-io/ipld-eth-db/ipld-eth-db:v5.0.5-alpha
|
2023-06-23 12:42:55 +00:00
|
|
|
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:
|
2023-07-05 10:15:05 +00:00
|
|
|
- 127.0.0.1:8077:5432
|
2023-06-23 12:42:55 +00:00
|
|
|
volumes:
|
|
|
|
- ../indexer/database/file:/file_indexer
|