Adminer with autologin and tables-filter
615
This Docker image is fork of https://github.com/michalhosna/adminer-docker. I only updated Adminer to the latest version and added
tables-filterplugin.
Adminer docker image with extended env variables for autologin.
Docker hub: https://hub.docker.com/r/ludekvesely/adminer
version: '2.4'
services:
adminer:
image: ludekvesely/adminer
ports:
- 8080:8080
environment:
ADMINER_DB: adminer
ADMINER_DRIVER: pgsql
ADMINER_PASSWORD: adminer
ADMINER_SERVER: postgres
ADMINER_USERNAME: adminer
ADMINER_AUTOLOGIN: 1
ADMINER_NAME: This will be in the title!
postgres:
image: postgres:10-alpine
restart: on-failure
environment:
POSTGRES_DB: adminer
POSTGRES_USER: adminer
POSTGRES_PASSWORD: adminer
The builds are always build without changing the build-args
master - always master of the repo, prefered to use, it should be to most up-to-date and stable8dc4d2b8b484ed08d041066fadc6a832ef57a1f6 or similar4.7.04.7.0-8dc4d2b, the same as commit hash, only with better readability of versionNo latest tag, if it shows up in the docker hub i fucked up (it's to easy), and you cannot completely delete tag from docker hub, you shouldn't use it.
You can preffil any/all/none of the environment variables.
If you prefill all environment variables including ADMINER_AUTOLOGIN, user will be autologed and won't see the login screen at all.
If you prefill only some variables, user will be presented with form with prefiled (and disabled) fields from env vars.
ADMINER_DB, ADMINER_PASSWORD, ADMINER_SERVER, ADMINER_USERNAMEI hope those speak for themselves
ADMINER_DRIVERValue from driver select
Current possible values are:
sqlitesqlite2pgsqloraclemssqlfirebirdsimpledbmongoelasticclickhouse(This image was not tested with all of them)
ADMINER_AUTOLOGINIf this variable exists (even if it's empty), adminer will try to autologin, no matter if all fields are filled
ADMINER_NAMEThis value will be in the title and heading.
Content type
Image
Digest
Size
7.9 MB
Last updated
over 4 years ago
docker pull ludekvesely/adminer