ipld-eth-state-snapshot/test/compose.yml

31 lines
769 B
YAML
Raw Normal View History

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"
2023-05-10 18:11:42 +00:00
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
command: ["postgres", "-c", "log_statement=all"]
environment:
POSTGRES_USER: "vdbm"
2023-05-10 18:11:42 +00:00
POSTGRES_DB: "cerc_testing"
POSTGRES_PASSWORD: "password"
ports:
- 0.0.0.0:8077:5432
volumes:
- /tmp:/tmp
healthcheck:
test: ["CMD", "pg_isready", "-U", "vdbm"]
interval: 2s
timeout: 1s
retries: 3