Arun Vasudevan e93a17e917
feat(ingest/postgres): support estimated row counts in profiling (#7476)
Co-authored-by: Harshal Sheth <hsheth2@gmail.com>
2023-03-07 11:08:09 -08:00

14 lines
338 B
YAML

version: '3.8'
services:
testpostgres:
container_name: "testpostgres"
hostname: postgres
image: postgres:15.2
environment:
POSTGRES_USER: "postgres"
POSTGRES_PASSWORD: "example"
ports:
- '5432:5432'
volumes:
- ./setup:/setup
- ./setup/setup.sql:/docker-entrypoint-initdb.d/setup.sql