docker-adminer
docker-adminer copied to clipboard
Database management in a single PHP file
Here is a hacky solution to enable MSSQL ([link](https://learn.microsoft.com/en-us/sql/connect/odbc/linux-mac/installing-the-microsoft-odbc-driver-for-sql-server?view=sql-server-ver16&tabs=alpine18-install%2Calpine17-install%2Cdebian8-install%2Credhat7-13-install%2Crhel7-offline)). 1. Update PHP to 8 2. Install `gpg`, `sudo` 3. Add and run `msodbc.sh` 4. Install `autoconf`, `make`, `g++`, `unixodbc-dev` 5....
Added a new environment variable to support new dark mode functionality. Fixes #198 Fixes #218 Updated docs PR https://github.com/docker-library/docs/pull/2577
Since PHP is running in single-threaded mode, opening a new tab while executing a long-running query will hang. This can also be used for DOS attacks, since a single user...
**Adminer version:** please use latest published or Git Adminer 5.2.1 **Compiled:** single file / single language / source codes / custom compilation adminer docker image **Driver:** e.g. MySQLi MariaDB **Database...
The plugins are not working with the latest `adminer:5.2.1-standalone` image. Enable the login-servers plugin using: **Dockerfile** ``` FROM adminer:5.2.1-standalone RUN cp /var/www/html/plugins/login-servers.php /var/www/html/plugins-enabled/ ``` ```sh $ docker build -t adminer:dev...
According to [Docker Hub doc](https://hub.docker.com/_/adminer/) only the default database can be set with `ADMINER_DEFAULT_SERVER`. It would be great to also have `ADMINER_DEFAULT_DRIVER`, `ADMINER_DEFAULT_DB` and `ADMINER_DEFAULT_USER`. Is that possible?
This will allow setting additional environment variables `ADMINER_DEFAULT_DRIVER`, `ADMINER_DEFAULT_DBNAME` as defaults for the login-form. relates to #192
Adminer version: 5.0.6 I am using docker container named "adminer" which runs 4.1.7 automatically. I upgraded it to 5.0.6 and I am using dracula theme as default. when I run...
How can be enabled firebird plugin ? I'm trying with next compose file ``` services: adminer: container_name: adminer # image: adminer build: context: . dockerfile: Dockerfile user: adminer:adminer restart: always...