stack-orchestrator/compose/docker-compose-ipld-eth-beacon-db.yml
2022-08-13 22:42:15 -06:00

18 lines
422 B
YAML

version: "3.2"
services:
ipld-eth-beacon-db:
restart: always
image: vulcanize/ipld-eth-beacon-db:local
environment:
POSTGRES_USER: vdbm
POSTGRES_DB: vulcanize_testing
POSTGRES_PASSWORD: password
volumes:
- vdb_db_eth-beacon_db:/var/lib/postgresql/data
ports:
- "127.0.0.1:8076:5432"
command: ["postgres", "-c", "log_statement=all"]
volumes:
vdb_db_eth-beacon_db: