From ba058e7a34d31cb2f4dcc59d228e356a2b7e8a90 Mon Sep 17 00:00:00 2001 From: Derek McQuay Date: Tue, 10 Apr 2018 19:47:22 -0700 Subject: [PATCH] add postgres docker container command Signed-off-by: Derek McQuay --- README.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/README.md b/README.md index 18768ee..a5a3488 100644 --- a/README.md +++ b/README.md @@ -39,3 +39,11 @@ $ hdxd run -p 8080 is the most basic way to run the application. Expects a Postgres DB with DBName 'hdx', DBUser 'dm' and running on localhost:5432 + +Running: + +```bash +docker run --name some-postgres -p 5432:5432 -e POSTGRES_USER=dm -e POSTGRES_DB=hdx -d postgres +``` + +Should get you a postgres DB running you can use to try it out.