From 7cc19b50fc9c9dbb7a5e9ff1545db2b13e8436b5 Mon Sep 17 00:00:00 2001
From: Matthew Momjian <50788000+mmomjian@users.noreply.github.com>
Date: Tue, 2 Apr 2024 10:56:17 -0400
Subject: [PATCH] docs: update DB_URL_FILE (#8465)
* Update environment-variables.md
* linting
---
docs/docs/install/environment-variables.md | 15 ++++++++-------
1 file changed, 8 insertions(+), 7 deletions(-)
diff --git a/docs/docs/install/environment-variables.md b/docs/docs/install/environment-variables.md
index 9da1f3ce9..5f727999e 100644
--- a/docs/docs/install/environment-variables.md
+++ b/docs/docs/install/environment-variables.md
@@ -164,13 +164,14 @@ The following variables support the use of [Docker secrets](https://docs.docker.
To use any of these, replace the regular environment variable with the equivalent `_FILE` environment variable. The value of
the `_FILE` variable should be set to the path of a file containing the variable value.
-| Regular Variable | Equivalent Docker Secrets '\_FILE' Variable |
-| :----------------: | :-----------------------------------------: |
-| `DB_HOSTNAME` | `DB_HOSTNAME_FILE`\*1 |
-| `DB_DATABASE_NAME` | `DB_DATABASE_NAME_FILE`\*1 |
-| `DB_USERNAME` | `DB_USERNAME_FILE`\*1 |
-| `DB_PASSWORD` | `DB_PASSWORD_FILE`\*1 |
-| `REDIS_PASSWORD` | `REDIS_PASSWORD_FILE`\*2 |
+| Regular Variable | Equivalent Docker Secrets '\_FILE' Variable |
+| :----------------- | :------------------------------------------ |
+| `DB_HOSTNAME` | `DB_HOSTNAME_FILE`\*1 |
+| `DB_DATABASE_NAME` | `DB_DATABASE_NAME_FILE`\*1 |
+| `DB_USERNAME` | `DB_USERNAME_FILE`\*1 |
+| `DB_PASSWORD` | `DB_PASSWORD_FILE`\*1 |
+| `DB_URL` | `DB_URL_FILE`\*1 |
+| `REDIS_PASSWORD` | `REDIS_PASSWORD_FILE`\*2 |
\*1: See the [official documentation](https://github.com/docker-library/docs/tree/master/postgres#docker-secrets) for
details on how to use Docker Secrets in the Postgres image.