From 5486c6fa6628180181892c587633a52035572e61 Mon Sep 17 00:00:00 2001 From: Sylvain Date: Wed, 25 Nov 2020 09:35:22 +0100 Subject: [PATCH] updated documentation about POSTGRES_USERNAME --- doc/environment.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/doc/environment.md b/doc/environment.md index f11250f34..8cd8b8895 100644 --- a/doc/environment.md +++ b/doc/environment.md @@ -26,11 +26,11 @@ If you run the application in production with docker, the settings are localized DNS name or IP address of the server hosting the PostgreSQL database of the application (see [PostgreSQL](../README.md#postgresql)). This value is only used when deploying in production, otherwise this is configured in [config/database.yml](../config/database.yml.default). When using docker-compose, you should provide the name of the service in your [docker-compose.yml](../docker/docker-compose.yml) file (`postgres` by default). - + - POSTGRES_PASSWORD + POSTGRES_USERNAME, POSTGRES_PASSWORD -Password for the PostgreSQL user, as specified in `database.yml` (default: `postgres`). +Username and password for the connection to the PostgreSQL database. This value is only used when deploying in production, otherwise this is configured in [config/database.yml](../config/database.yml.default). When using docker-compose, the default configuration (with `postgres` user) does not uses any password as it is confined in the docker container.