From b0add69eae08d0ae2480c36da843c40e983108b8 Mon Sep 17 00:00:00 2001 From: Robb Kidd Date: Thu, 16 Dec 2021 15:35:04 -0500 Subject: [PATCH] add docker-compose config for test-worthy Postgres This is enough docker and postgres to make the PG instrumentation tests happy(ier). --- docker-compose.yaml | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 docker-compose.yaml diff --git a/docker-compose.yaml b/docker-compose.yaml new file mode 100644 index 00000000..7501f1a6 --- /dev/null +++ b/docker-compose.yaml @@ -0,0 +1,10 @@ +version: "3" + +services: + pg: + image: postgres + environment: + POSTGRES_HOST_AUTH_METHOD: trust + POSTGRES_USER: ${USER} + ports: + - "127.0.0.1:5432:5432"