
library/adminerMaintained by:
Tim Düsterhus (of the Docker Community)
Where to get help:
the Docker Community Slack, Server Fault, Unix & Linux, or Stack Overflow
Dockerfile links5.4.2, 5, latest, 5.4.2-standalone, 5-standalone, standalone
5.4.2-fastcgi, 5-fastcgi, fastcgi
4.17.1, 4, 4.17.1-standalone, 4-standalone
4.17.1-fastcgi, 4-fastcgi
Where to file issues:
[***]
Supported architectures: (more info)
amd64, arm32v6, arm32v7, arm64v8, i386, ppc64le, riscv64, s390x
Published image artifact details:
repo-info repo's repos/adminer/ directory (history)
(image metadata, transfer size, etc)
Image updates:
official-images repo's library/adminer label
official-images repo's library/adminer file (history)
Source of this description:
docs repo's adminer/ directory (history)
Adminer (formerly phpMinAdmin) is a full-featured database management tool written in PHP. Conversely to phpMyAdmin, it consist of a single file ready to deploy to the target server. Adminer is available for MySQL, PostgreSQL, SQLite, MS SQL, Oracle, Firebird, SimpleDB, Elasticsearch and MongoDB.
adminer.org
!logo
console$ docker run --link some_database:db -p 8080:8080 adminer
Then you can hit http://localhost:8080 or [***] in your browser.
If you are already running a FastCGI capable web server you might prefer running Adminer via FastCGI:
console$ docker run --link some_database:db -p 9000:9000 adminer:fastcgi
Then point your web server to port 9000 of the container.
Note: This exposes the FastCGI socket to the Internet. Make sure to add proper firewall rules or use a private Docker network instead to prevent a direct access.
docker composeExample compose.yaml for adminer:
yaml# Use root/example as user/password credentials services: adminer: image: adminer restart: always ports: - 8080:8080 db: image: mysql:5.6 restart: always environment: MYSQL_ROOT_PASSWORD: example
Run docker compose up, wait for it to initialize completely, and visit http://localhost:8080 or [***] (as appropriate).
This image bundles all official Adminer plugins. You can find the list of plugins on GitHub: [***]
To load plugins you can pass a list of filenames in ADMINER_PLUGINS:
console$ docker run --link some_database:db -p 8080:8080 -e ADMINER_PLUGINS='tables-filter tinymce' adminer
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' adminer Unable to load plugin file "login-servers", because it has required parameters: servers Create a file "/var/www/html/plugins-enabled/login-servers.php" with the following contents to load the plugin: <?php require_once('plugins/login-servers.php'); /** Set supported servers * @param array array($domain) or array($domain => $description) or array($category => array()) * @param string */ return new AdminerLoginServers( $servers = ???, $driver = 'server' );
To load a custom plugin you can add PHP scripts that return the instance of the plugin object to /var/www/html/plugins-enabled/.
The image bundles all the designs that are available in the source package of adminer. You can find the list of designs on GitHub: [***]
To use a bundled design you can pass its name in ADMINER_DESIGN:
console$ docker run --link some_database:db -p 8080:8080 -e ADMINER_DESIGN='nette' adminer
To use a custom design you can add a file called /var/www/html/adminer.css.
You can specify the default host with the ADMINER_DEFAULT_SERVER environment variable. This is useful if you are connecting to an external server or a docker container named something other than the default db.
consoledocker run -p 8080:8080 -e ADMINER_DEFAULT_SERVER=mysql adminer
While Adminer supports a wide range of database drivers this image only supports the following out of the box:
To add support for the other drivers you will need to install the following PHP extensions on top of this image:
pdo_dblib (MS SQL)oci8 (Oracle)interbase (Firebird)mongodb (MongoDB)View license information for the software contained in this image.
As with all Docker images, these likely also contain other software which may be under other licenses (such as Bash, etc from the base distribution, along with any direct or indirect dependencies of the primary software being contained).
Some additional license information which was able to be auto-detected might be found in the repo-info repository's adminer/ directory.
As for any pre-built image usage, it is the image user's responsibility to ensure that any use of this image complies with any relevant licenses for all software contained within.

manifest unknown 错误
TLS 证书验证失败
DNS 解析超时
410 错误:版本过低
402 错误:流量耗尽
身份认证失败错误
429 限流错误
凭证保存错误
来自真实用户的反馈,见证轩辕镜像的优质服务