TimWolla / docker-adminer

Database management in a single PHP file
https://hub.docker.com/_/adminer/
157 stars 69 forks source link

[bug] ADMINER_DESIGN: hydra, not show all columns if too much #166

Open geekyouth opened 7 months ago

geekyouth commented 7 months ago

image

geekyouth commented 7 months ago

i have fix the bug by below docker-compose.yaml

services:
  adminer:
    image: adminer:4.8.1-standalone
    hostname: adminer
    restart: unless-stopped
    ports:
      - "58081:8080"
    environment:
      TZ: Asia/Shanghai
      ADMINER_DEFAULT_SERVER: mysql
      ADMINER_DESIGN: hydra
      ADMINER_PLUGINS: 'tables-filter tinymce dump-json'
    volumes:
      - ./hydra.css:/var/www/html/designs/hydra/adminer.css:ro  # fix hydra style
      - ./_docker-data/:/demo/:rw
      - ./sqlite.php:/var/www/html/plugins-enabled/sqlite.php # sqlite rw

hydra.css: https://github.com/Niyko/Hydra-Dark-Theme-for-Adminer