From a4fe838308774853038e9136c64ead56712c5a79 Mon Sep 17 00:00:00 2001 From: Joshua Taillon Date: Tue, 8 Dec 2020 12:58:25 -0700 Subject: [PATCH] Fix outdated environment variable for docker compose Also removed a deprecated `links` setting from the docker-compose, since that's not needed any more --- install.rst | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/install.rst b/install.rst index 9b4756abd..6e71745a7 100644 --- a/install.rst +++ b/install.rst @@ -172,13 +172,11 @@ To avoid having to install the database at all, you can run both it and the serv image: postgrest/postgrest ports: - "3000:3000" - links: - - db:db environment: PGRST_DB_URI: postgres://app_user:password@db:5432/app_db PGRST_DB_SCHEMA: public PGRST_DB_ANON_ROLE: app_user #In production this role should not be the same as the one used for the connection - PGRST_SERVER_PROXY_URI: "http://127.0.0.1:3000" + PGRST_OPENAPI_SERVER_PROXY_URI: "http://127.0.0.1:3000" depends_on: - db db: