Files
stacks-blockchain-api/docker-compose.dev.postgres.yml
Asim Mehmood bd4dc86493 fix: separate out rosetta request/response schema files from entity files
Several schema files referenced entity files in the docs/api/rosetta
directory.  They entity files have all been moved to docs/entities/rosetta
and references updated.
2020-09-01 08:26:03 -06:00

17 lines
329 B
YAML

version: '3.7'
services:
postgres:
image: "postgres:12.2"
ports:
- "5490:5432"
environment:
POSTGRES_USER: postgres
POSTGRES_PASSWORD: postgres
POSTGRES_DB: stacks_blockchain_api
POSTGRES_PORT: 5432
volumes:
- ./psql-data:/var/lib/postgresql/data/
volumes:
database-data: