Add ipld-eth-server to plugeth fixturenet #21

Merged
roysc merged 2 commits from roysc/add-ipld-eth-server into main 2024-08-05 19:15:59 +00:00
Showing only changes of commit b2e60bc50c - Show all commits

View File

@ -13,17 +13,16 @@ services:
DATABASE_PORT: 5432 DATABASE_PORT: 5432
ipld-eth-db: ipld-eth-db:
image: timescale/timescaledb:2.8.1-pg14 image: timescale/timescaledb:latest-pg14
restart: always restart: always
environment: environment:
POSTGRES_USER: "vdbm" POSTGRES_USER: "vdbm"
POSTGRES_DB: "cerc_testing" POSTGRES_DB: "cerc_testing"
POSTGRES_PASSWORD: "password" POSTGRES_PASSWORD: "password"
healthcheck:
test: ["CMD", "nc", "-v", "localhost", "5432"]
interval: 30s
timeout: 10s
retries: 10
start_period: 3s
ports: ports:
- "127.0.0.1:8077:5432" - "127.0.0.1:8077:5432"
healthcheck:
test: ["CMD", "pg_isready", "-U", "vdbm"]
interval: 2s
timeout: 1s
retries: 3