docker-adminer
docker-adminer copied to clipboard
Database management in a single PHP file

https://hub.docker.com/_/adminer reference: https://en.wikipedia.org/wiki/Adminer 
this is my docker-compose.yaml ```yaml services: adminer: image: adminer:4.8.1-standalone # restart: unless-stopped ports: - "8080:8080" environment: TZ: Asia/Shanghai ADMINER_DEFAULT_SERVER: mysql57 ADMINER_DESIGN: hydra ADMINER_PLUGINS: 'tables-filter tinymce login-password-less' volumes: - ./hydra.css:/var/www/html/designs/hydra/adminer.css:ro #...
This is an FYI about the upstream support status, [the author says](https://www.youtube.com/watch?v=OrOtiu_nfHE) quote: I've stopped working on it but maybe I'll return to it some day. Nobody else appears to...
When I enabled `ADMINER_PLUGINS=login-servers` and created `plugins-enabled/login-servers.php` as instructed in the plugin-loader error message, it would still try to create its own file in plugins-enabled, and then continue to complain,...
``` docker logs adminer ln: failed to create symbolic link './adminer.css': Permission denied ```
I use next docker-compose instructions. ``` services: mssql: image: mcr.microsoft.com/mssql/server:2019-latest ports: - ${DATABASE_PORT}:1433 volumes: - ./.data/db:/var/lib/mssql/data environment: ACCEPT_EULA: -Y MSSQL_SA_USER: ${DATABASE_USERNAME} MSSQL_SA_PASSWORD: ${DATABASE_PASSWORD} adminer: image: adminer restart: always ports: -...
see https://github.com/docker-library/official-images/pull/13622#issuecomment-1335492868
I've tried everything, but I can't get this directive to work. I've spent several hours setting up fastcgi for nginx (I mean this line: `fastcgi_param SCRIPT_FILENAME /var/www/html/index.php;`) Maybe something additional...
I am unable to figure out how why I am not able to edit the contents of the sqlite db from a directory I have mounted in my compose below....