Merge pull request #1914 from kerhong/patch-1

[adminer] Improve docs for ADMINER_PLUGINS interaction with configurable plugins
This commit is contained in:
Tianon Gravi 2021-04-13 16:16:54 -07:00 committed by GitHub
commit d2d7333863
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -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%%