1
0
mirror of https://github.com/LaCasemate/fab-manager.git synced 2025-01-18 07:52:23 +01:00

updated documentation about POSTGRES_USERNAME

This commit is contained in:
Sylvain 2020-11-25 09:35:22 +01:00
parent 3b5a5f5fb2
commit 5486c6fa66

View File

@ -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).
<a name="POSTGRES_PASSWORD"></a>
<a name="POSTGRES_PASSWORD"></a><a name="POSTGRES_USERNAME"></a>
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.
<a name="REDIS_HOST"></a>