restore the changes from commit fbdb5ecbc9c560fa04ee570c04024efd11ccb343

This commit is contained in:
Sameer Naik 2014-08-05 07:48:16 +05:30
parent 4bbba6f5d3
commit a92c297f06

View File

@ -373,7 +373,7 @@ docker logs postgresql
Now, lets login to the postgresql server and create a user and database for the GitLab application.
```bash
psql -U postgres -h $(docker inspect --format {{.NetworkSettings.IPAddress}} postgresql)
docker run -it --rm sameersbn/postgresql:latest psql -U postgres -h $(docker inspect --format {{.NetworkSettings.IPAddress}} postgresql)
```
```sql