From 35c45b159bd9b01340836f9209527ebc42cdeda3 Mon Sep 17 00:00:00 2001 From: DaanSelen Date: Thu, 29 Jan 2026 13:32:03 +0100 Subject: [PATCH] docs: adjust to the database support --- docker/README.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/docker/README.md b/docker/README.md index 638fbce3..dbac6e5a 100644 --- a/docker/README.md +++ b/docker/README.md @@ -113,6 +113,11 @@ Updating the WGDashboard container should be through 'The Docker Way' - by pulli | `email_password` | Any non-empty string | `-` | `app_password` | Password for SMTP authentication. | | `email_from` | Valid email address | `-` | `noreply@example.com` | Email address used as the sender for notifications. | | `email_template` | Path to template file | `-` | `your-template` | Custom template for email notifications. | +| `database_type` | `sqlite`, `postgresql`, `mariadb+mariadbconnector`, etc. | `-` | `postgresql` | Type of [sqlalchemy database engine](https://docs.sqlalchemy.org/en/21/core/engines.html). | +| `database_host` | Any non-empty string | `-` | `localhost` | IP-Address or hostname of the SQL-database server. | +| `database_port` | Any non-empty string (or int for port) | `-` | `5432` | Port for the database communication. | +| `database_username`| Valid database username | `-` | `database_user` | Database user username. | +| `database_password`| Valid database password | `-` | `database_password` | Database user password. | ---