From 1ee73dd0adfefaf89849ab1fcbcf03d8409d48c2 Mon Sep 17 00:00:00 2001 From: John Jelinek IV Date: Fri, 1 Aug 2014 15:33:18 -0500 Subject: [PATCH] Update README I don't have psql installed on my host, and since it's already provided in the postgresql container, I modified the psql request to reference that one. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 8bf8826d..4305f5db 100644 --- a/README.md +++ b/README.md @@ -374,7 +374,7 @@ Now, lets login to the postgresql server and create a user and database for the ```bash POSTGRESQL_IP=$(docker inspect postgresql | grep IPAddres | awk -F'"' '{print $4}') -psql -U postgres -h ${POSTGRESQL_IP} +docker run -it --rm sameersbn/postgresql:latest psql -U postgres -h ${POSTGRESQL_IP} ``` ```sql