Fix warning when using docker host network

Resolves #491

Signed-off-by: Wolfgang Walther <walther@technowledgy.de>
This commit is contained in:
Wolfgang Walther
2022-01-30 14:24:51 +01:00
committed by Wolfgang Walther
parent a4db05aeba
commit 91f1580f95
+10 -1
View File
@@ -129,7 +129,7 @@ The first way to run PostgREST in Docker is to connect it to an existing native
.. code-block:: bash
# Run the server
docker run --rm --net=host -p 3000:3000 \
docker run --rm --net=host \
-e PGRST_DB_URI="postgres://app_user:password@localhost/postgres" \
postgrest/postgrest
@@ -155,6 +155,15 @@ The database connection string above is just an example. Adjust the role and pas
host all all 10.0.0.10/32 trust
The docker command will then look like this:
.. code-block:: bash
# Run the server
docker run --rm -p 3000:3000 \
-e PGRST_DB_URI="postgres://app_user:password@10.0.0.10/postgres" \
postgrest/postgrest
.. _pg-in-docker:
Containerized PostgREST *and* db with docker-compose