stack-orchestrator/compose/docker-compose-ipld-eth-beacon-db.yml

18 lines
412 B
YAML
Raw Normal View History

2022-08-12 17:32:40 +00:00
version: "3.2"
services:
ipld-eth-beacon-db:
restart: always
2022-08-23 22:02:38 +00:00
image: cerc/ipld-eth-beacon-db:local
2022-08-12 17:32:40 +00:00
environment:
POSTGRES_USER: vdbm
2022-08-23 22:02:38 +00:00
POSTGRES_DB: cerc_testing
2022-08-12 17:32:40 +00:00
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: