Skip to content

Commit 4b9ec19

Browse files
committed
dev: add reference docker-compose for getting postgres up
Required environment variable for the test: `DPP_PG_URL`. export DPP_PG_URL="postgres://postgres:localhost@127.0.0.1:5432/dino-park-packs-test-local" Stash this in .envrc or similar. Jira: IAM-1908
1 parent b865b3c commit 4b9ec19

1 file changed

Lines changed: 10 additions & 0 deletions

File tree

dev/docker-compose.yml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
# This is used for local development only.
2+
3+
services:
4+
postgres:
5+
image: postgres:18.3
6+
ports:
7+
- 127.0.0.1:5432:5432
8+
environment:
9+
POSTGRES_DB: dino-park-packs-test-local
10+
POSTGRES_PASSWORD: localhost

0 commit comments

Comments
 (0)