Skip to content

Commit

Permalink
add docker-compose config for test-worthy Postgres (#515)
Browse files Browse the repository at this point in the history
This is enough docker and postgres to make the PG instrumentation tests happy(ier).
  • Loading branch information
robbkidd authored Dec 17, 2021
1 parent 2a4f08e commit 8d1d590
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions docker-compose.yaml
Original file line number Diff line number Diff line change
@@ -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"

0 comments on commit 8d1d590

Please sign in to comment.