Skip to content

danielrusso/Adminer-Autologin

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

22 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Adminer-Autologin Docker Image

Please only use this image in a local development environment.

This image will auto-update every 30 days (if a new offical Docker image was released).

Usage

Load the Adminer plugin login-env-vars and set the following env vars to login automatically.

  • ADMINER_DRIVER
  • ADMINER_SERVER
  • ADMINER_USERNAME
  • ADMINER_PASSWORD
  • ADMINER_DB

Example

docker-compose.yaml:

services:
  adminer:
    image: ghcr.io/jeliebig/adminer-autologin
    environment:
      ADMINER_PLUGINS: login-env-vars
      # Without loading other plugins you can choose one of these:
      # Format: driver_name -> db_name
      # - server -> MySQL
      # - sqlite -> SQLite3
      # - sqlite2 -> SQLite2
      # - pgsql -> PostgreSQL
      # - oracle -> Oracle (beta)
      # - mssql -> MS SQL (beta)
      # - mongo -> MongoDB (alpha)
      # - elastic -> Elasticsearch (beta)
      ADMINER_DRIVER: driver_name
      ADMINER_SERVER: server_host
      ADMINER_USERNAME: username
      ADMINER_PASSWORD: password
      ADMINER_DB: db

About

Plugin for Adminer to allow autologin with environment variables

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors

Languages

  • Python 51.4%
  • PHP 44.3%
  • Dockerfile 4.3%