Adminer version: 5.2.1 or latest ``` $ docker run --rm adminer echo 1 1 # fails without any details $ docker run --rm -e ADMINER_PLUGINS="tables-filter" adminer echo 1 $ echo $? 255 $ docker run --rm -e ADMINER_PLUGINS="tables-filter" adminer:5.1.0-standalone echo 1 1 ``` Related: - https://github.com/vrana/adminer/issues/1038 - https://github.com/vrana/adminer/issues/1041