-
Notifications
You must be signed in to change notification settings - Fork 80
Closed
Labels
Description
I am testing out adminer and I cannot get it to run when I add the plugin line. According to the logs, I get an exit code 255.
Compose File
version: '3.7'
services:
adminer:
image: 'adminer:latest'
restart: always
ports:
- '8080:8080'
environment:
- 'ADMINER_DESIGN=dracula'
- 'ADMINER_PLUGINS=plugin dump-json dump-zip login-password-less'
mysql_db:
image: 'mariadb:10.7'
command: '--default-authentication-plugin=mysql_native_password'
restart: always
environment:
MYSQL_ROOT_PASSWORD: rootpassword