Merge pull request #114 from johnjelinek/patch-1

Update README to reference psql in postgresql container
This commit is contained in:
Sameer Naik 2014-08-02 10:57:25 +05:30
commit fbdb5ecbc9

View File

@ -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