From 8c663ac13823b45d8d6926b670276200ff53d8d7 Mon Sep 17 00:00:00 2001 From: Edgars Baduns Date: Tue, 13 Apr 2021 21:11:11 +0300 Subject: [PATCH] Improve documentation about how ADMINER_PLUGINS interacts with plugins-enabled Currently the documentation suggests that for configurable plugins you need to both add the plugin to `ADMINER_PLUGINS` and add config to `/var/www/html/plugins-enabled/`. This is incorrect and causes errors. Instead users should only add config to `/var/www/html/plugins-enabled/` --- adminer/content.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/adminer/content.md b/adminer/content.md index 9257e20e9..8ff169183 100644 --- a/adminer/content.md +++ b/adminer/content.md @@ -44,7 +44,7 @@ To load plugins you can pass a list of filenames in `ADMINER_PLUGINS`: $ docker run --link some_database:db -p 8080:8080 -e ADMINER_PLUGINS='tables-filter tinymce' %%IMAGE%% ``` -If a plugin *requires* parameters to work correctly you will need to add a custom file to the container: +If a plugin *requires* parameters to work correctly instead of adding the plugin to `ADMINER_PLUGINS`, you need to add a custom file to the container: ```console $ docker run --link some_database:db -p 8080:8080 -e ADMINER_PLUGINS='login-servers' %%IMAGE%%