1
0
Fork 0

Fix readme monospace syntax

This commit is contained in:
Hraban Luyat 2017-04-25 09:44:58 +01:00
parent 1e1d980ae2
commit 94d8091bac
1 changed files with 4 additions and 0 deletions

View File

@ -189,11 +189,13 @@ installing it, or any dependencies, system-wide.
To build the image:
::
$ docker build -t pgcli .
To create a container from the image:
::
$ docker run --rm -ti pgcli pgcli <ARGS>
To access postgresql databases listening on localhost, make sure to run the
@ -201,12 +203,14 @@ docker in "host net mode". E.g. to access a database called "foo" on the
postgresql server running on localhost:5432 (the standard port):
::
$ docker run --rm -ti --net host pgcli pgcli -h localhost foo
To connect to a locally running instance over a unix socket, bind the socket to
the docker container:
::
$ docker run --rm -ti -v /var/run/postgres:/var/run/postgres pgcli pgcli foo
Thanks: