From ca456ecc51765f8f622b2aca837bf8adab0a70da Mon Sep 17 00:00:00 2001 From: stefan8888 Date: Mon, 29 Jul 2019 20:15:00 +0200 Subject: [PATCH] Updated Docker section (#236) * Updated Docker section On macOS, it is also necessary to add the IP address in pg_hba.conf --- install.rst | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/install.rst b/install.rst index de4bf4187..ebc0ea979 100644 --- a/install.rst +++ b/install.rst @@ -297,6 +297,11 @@ The database connection string above is just an example. Adjust the role and pas .. code-block:: bash listen_addresses = 'localhost,10.0.0.10' + You might also need to add a new IPv4 local connection within pg_hba.conf. For instance: + + .. code-block:: bash + + host all all 10.0.0.10/32 trust Containerized PostgREST *and* db with docker-compose ----------------------------------------------------