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.