stack-orchestrator/compose/docker-compose-ipld-eth-beacon-db.yml
Thomas E Lackey 863548530a
Integrate ipld-eth-beacon-indexer working with the fixturenet. (#36)
* Use explicit image hash, not latest tag.

* Better syntax

* No latest

* Add fixturenet setup for beacon indexer.

* Don't wait for merge.

* Don't wait for merge.
2022-11-03 17:31:14 -05:00

18 lines
408 B
YAML

version: "3.2"
services:
ipld-eth-beacon-db:
restart: always
image: cerc/ipld-eth-beacon-db:local
environment:
POSTGRES_USER: vdbm
POSTGRES_DB: cerc_testing
POSTGRES_PASSWORD: password
healthcheck:
test: ["CMD", "nc", "-v", "localhost", "5432"]
interval: 30s
timeout: 10s
retries: 10
start_period: 3s
ports:
- "127.0.0.1:8076:5432"